From 059c1f520aefa9298c8401894a06ca990018ce92 Mon Sep 17 00:00:00 2001 From: Marvin W Date: Sun, 26 May 2019 21:06:16 +0200 Subject: [PATCH] Fix typos in maps api --- .../android/gms/maps/internal/ICameraUpdateFactoryDelegate.aidl | 2 +- .../google/android/gms/maps/internal/IMapFragmentDelegate.aidl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/play-services-api/src/main/aidl/com/google/android/gms/maps/internal/ICameraUpdateFactoryDelegate.aidl b/play-services-api/src/main/aidl/com/google/android/gms/maps/internal/ICameraUpdateFactoryDelegate.aidl index c7b28d86..a8ea7626 100644 --- a/play-services-api/src/main/aidl/com/google/android/gms/maps/internal/ICameraUpdateFactoryDelegate.aidl +++ b/play-services-api/src/main/aidl/com/google/android/gms/maps/internal/ICameraUpdateFactoryDelegate.aidl @@ -16,5 +16,5 @@ interface ICameraUpdateFactoryDelegate { IObjectWrapper newLatLng(in LatLng latLng); IObjectWrapper newLatLngZoom(in LatLng latLng, float zoom); IObjectWrapper newLatLngBounds(in LatLngBounds bounds, int padding); - IObjectWrapper newLatLngBoundsWithSize(in LatLngBounds bounds, int width, int height, int size); + IObjectWrapper newLatLngBoundsWithSize(in LatLngBounds bounds, int width, int height, int padding); } diff --git a/play-services-api/src/main/aidl/com/google/android/gms/maps/internal/IMapFragmentDelegate.aidl b/play-services-api/src/main/aidl/com/google/android/gms/maps/internal/IMapFragmentDelegate.aidl index 988ecee2..130a1fcc 100644 --- a/play-services-api/src/main/aidl/com/google/android/gms/maps/internal/IMapFragmentDelegate.aidl +++ b/play-services-api/src/main/aidl/com/google/android/gms/maps/internal/IMapFragmentDelegate.aidl @@ -11,7 +11,7 @@ interface IMapFragmentDelegate { IGoogleMapDelegate getMap(); void onInflate(IObjectWrapper activity, in GoogleMapOptions options, in Bundle savedInstanceState); void onCreate(in Bundle savedInstanceState); - IObjectWrapper onCreateView(IObjectWrapper layoutInflate, IObjectWrapper container, in Bundle savedInstanceState); + IObjectWrapper onCreateView(IObjectWrapper layoutInflater, IObjectWrapper container, in Bundle savedInstanceState); void onResume(); void onPause(); void onDestroyView();