summaryrefslogtreecommitdiffstats
path: root/libs/storage
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2010-10-13 15:58:59 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-10-13 15:58:59 -0700
commitfd14fb59584a3670a676ca014ba74f788734dfeb (patch)
tree630302d285f4eb37b1a8c6ce64e51696ec9389ea /libs/storage
parent0a9b54e88b9cbb30748b5f0b331aec3f3ef8d639 (diff)
parentc30414329c381afba7bd23bdd0f1237fad0850a6 (diff)
downloadframeworks_base-fd14fb59584a3670a676ca014ba74f788734dfeb.zip
frameworks_base-fd14fb59584a3670a676ca014ba74f788734dfeb.tar.gz
frameworks_base-fd14fb59584a3670a676ca014ba74f788734dfeb.tar.bz2
am c3041432: am de846ac6: Merge "Change to new binder implementation for OBB" into gingerbread
Merge commit 'c30414329c381afba7bd23bdd0f1237fad0850a6' * commit 'c30414329c381afba7bd23bdd0f1237fad0850a6': Change to new binder implementation for OBB
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 9d3749d..b5f9c47 100644
--- a/libs/storage/IMountService.cpp
+++ b/libs/storage/IMountService.cpp
@@ -450,12 +450,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;