diff options
author | Sudheer Shanka <sudheersai@google.com> | 2016-11-01 00:13:51 -0700 |
---|---|---|
committer | Sudheer Shanka <sudheersai@google.com> | 2016-11-01 23:29:33 -0700 |
commit | 34b33887a17a312167666be217a0f521236b393d (patch) | |
tree | ec763f41cd47b1d42c7c2420d14a6b60b58c7580 /libs/storage/IMountService.cpp | |
parent | 12ffdd86e4553700a09b8fac4f6b658a50293edb (diff) |
Fix IMountService transaction ids.
- (IBinder.FIRST_CALL_TRANSACTION=1) is added to the specified
transaction codes during binder generation. Correct the
IMountService transaction ids taking this into account.
- Update interface descriptors in MountService related native code.
- Add proxy implementations for IMountServiceListener and
IMountShutdownObserver.
Bug: 30977067
Test: Verified that calls from native code to IMountService system
service are working and listeners in native code can get the
callbacks correctly.
Change-Id: I9bef9a8113e92d8b36e963bd961ac858acac3f2a
Diffstat (limited to 'libs/storage/IMountService.cpp')
-rw-r--r-- | libs/storage/IMountService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/storage/IMountService.cpp b/libs/storage/IMountService.cpp index 74638e7eccc3..fe1ee02420c2 100644 --- a/libs/storage/IMountService.cpp +++ b/libs/storage/IMountService.cpp @@ -553,7 +553,7 @@ public: } }; -IMPLEMENT_META_INTERFACE(MountService, "IMountService") +IMPLEMENT_META_INTERFACE(MountService, "android.os.storage.IMountService") // ---------------------------------------------------------------------- |