summaryrefslogtreecommitdiffstats
path: root/libs/storage
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2010-10-11 17:38:51 -0700
committerKenny Root <kroot@google.com>2010-10-11 17:38:51 -0700
commit4a99ed897796bec95039496a66ed1be066b6294c (patch)
treed329f79f97a6513f25236eef8d70fa48cd9c27d0 /libs/storage
parentaf9d667ccf3e24058214cf4cc0a8aa8bc5100e3c (diff)
downloadframeworks_base-4a99ed897796bec95039496a66ed1be066b6294c.zip
frameworks_base-4a99ed897796bec95039496a66ed1be066b6294c.tar.gz
frameworks_base-4a99ed897796bec95039496a66ed1be066b6294c.tar.bz2
Change to new binder implementation for OBB
Change-Id: I3282df361a11fc37e94bc5ba4bd5860ae62a10e4
Diffstat (limited to 'libs/storage')
-rw-r--r--libs/storage/IMountService.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/libs/storage/IMountService.cpp b/libs/storage/IMountService.cpp
index f36e2a3..9ff6930 100644
--- a/libs/storage/IMountService.cpp
+++ b/libs/storage/IMountService.cpp
@@ -449,12 +449,15 @@ public:
}
}
- void unmountObb(const String16& filename, const bool force)
+ void unmountObb(const String16& filename, const bool force,
+ const sp<IObbActionListener>& token, const int32_t nonce)
{
Parcel data, reply;
data.writeInterfaceToken(IMountService::getInterfaceDescriptor());
data.writeString16(filename);
data.writeInt32(force ? 1 : 0);
+ data.writeStrongBinder(token->asBinder());
+ data.writeInt32(nonce);
if (remote()->transact(TRANSACTION_unmountObb, data, &reply) != NO_ERROR) {
LOGD("unmountObb could not contact remote\n");
return;