From 4a99ed897796bec95039496a66ed1be066b6294c Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Mon, 11 Oct 2010 17:38:51 -0700 Subject: Change to new binder implementation for OBB Change-Id: I3282df361a11fc37e94bc5ba4bd5860ae62a10e4 --- libs/storage/IMountService.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libs/storage/IMountService.cpp') 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& 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; -- cgit v1.1