diff options
author | Sudheer Shanka <sudheersai@google.com> | 2016-11-07 15:41:02 -0800 |
---|---|---|
committer | Sudheer Shanka <sudheersai@google.com> | 2016-11-15 12:43:37 -0800 |
commit | 2250d56a0b47b93016018340c8f4040325aa5611 (patch) | |
tree | b9264557e60e3486858b88d578b888f014e0074b /libs/storage | |
parent | 3bfef0186464eea5877f6e5cb10621f9bc5bb4dc (diff) |
Rename MountService to StorageManagerService.
Bug: 30977067
Test: Existing tests pass
Change-Id: Ieac0f11c2b249dcd60441b14c1f391e6f8131d42
Diffstat (limited to 'libs/storage')
-rw-r--r-- | libs/storage/IMountService.cpp | 2 | ||||
-rw-r--r-- | libs/storage/IMountServiceListener.cpp | 2 | ||||
-rw-r--r-- | libs/storage/IMountShutdownObserver.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libs/storage/IMountService.cpp b/libs/storage/IMountService.cpp index fe1ee02420c2..fa3d8bd0930f 100644 --- a/libs/storage/IMountService.cpp +++ b/libs/storage/IMountService.cpp @@ -553,7 +553,7 @@ public: } }; -IMPLEMENT_META_INTERFACE(MountService, "android.os.storage.IMountService") +IMPLEMENT_META_INTERFACE(MountService, "android.os.storage.IStorageManager") // ---------------------------------------------------------------------- diff --git a/libs/storage/IMountServiceListener.cpp b/libs/storage/IMountServiceListener.cpp index 6a093fd94929..033d70d5694f 100644 --- a/libs/storage/IMountServiceListener.cpp +++ b/libs/storage/IMountServiceListener.cpp @@ -34,7 +34,7 @@ public: const String16& /* oldState */, const String16& /* newState */) { } }; -IMPLEMENT_META_INTERFACE(MountServiceListener, "android.os.storage.IMountServiceListener") +IMPLEMENT_META_INTERFACE(MountServiceListener, "android.os.storage.IStorageEventListener") // ---------------------------------------------------------------------- diff --git a/libs/storage/IMountShutdownObserver.cpp b/libs/storage/IMountShutdownObserver.cpp index 6114d4ac5978..e5de603cd5ee 100644 --- a/libs/storage/IMountShutdownObserver.cpp +++ b/libs/storage/IMountShutdownObserver.cpp @@ -31,7 +31,7 @@ public: virtual void onShutDownComplete(const int32_t /* statusCode */) {} }; -IMPLEMENT_META_INTERFACE(MountShutdownObserver, "android.os.storage.IMountShutdownObserver") +IMPLEMENT_META_INTERFACE(MountShutdownObserver, "android.os.storage.IStorageShutdownObserver") status_t BnMountShutdownObserver::onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) |