aboutsummaryrefslogtreecommitdiff
path: root/car-lib/src/android/car/ICarProjection.aidl
diff options
context:
space:
mode:
authorGene Karshenboym <genek@google.com>2017-06-22 15:58:31 -0700
committerGene Karshenboym <genek@google.com>2017-06-27 22:32:13 -0700
commitbeab135ad81125590461d657baeb5af9a0c15d1a (patch)
tree21d430bbc09d92b0bbfa7db1fdd6c9a694e731e4 /car-lib/src/android/car/ICarProjection.aidl
parente73a14692ffa4aee747aa07f29429e25191ce0bb (diff)
downloadCar-beab135ad81125590461d657baeb5af9a0c15d1a.tar.gz
Typo: (un)regsiterProjectionListener() and variants.
Fixed typo in method unregsiterProjectionListener() and related strings. Added wrapper calls to allow APKs built with previous SDK versions to call the newly named functions. bug: 62916428 Test: Local build and flashed to HU. Change-Id: I53cb4cafb015c789d3c930110a3b04d68de6f0b8
Diffstat (limited to 'car-lib/src/android/car/ICarProjection.aidl')
-rw-r--r--car-lib/src/android/car/ICarProjection.aidl4
1 files changed, 2 insertions, 2 deletions
diff --git a/car-lib/src/android/car/ICarProjection.aidl b/car-lib/src/android/car/ICarProjection.aidl
index 96eb2a9c30..15831cdeeb 100644
--- a/car-lib/src/android/car/ICarProjection.aidl
+++ b/car-lib/src/android/car/ICarProjection.aidl
@@ -42,10 +42,10 @@ interface ICarProjection {
* Registers projection callback.
* Re-registering same callback with different filter will cause only filter to update.
*/
- void regsiterProjectionListener(ICarProjectionCallback callback, int filter) = 2;
+ void registerProjectionListener(ICarProjectionCallback callback, int filter) = 2;
/**
* Unregisters projection callback.
*/
- void unregsiterProjectionListener(ICarProjectionCallback callback) = 3;
+ void unregisterProjectionListener(ICarProjectionCallback callback) = 3;
}