summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2010-10-11 17:24:54 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-10-11 17:24:54 -0700
commitb4de3dca96b9ff18562062e181dcd8b83e641e45 (patch)
treeb2e8b6060e1dbea173de867e5258add9b08ef8f3 /include
parent1169f420f6df5cf5254fed883efa7e6780473c08 (diff)
parentaf9d667ccf3e24058214cf4cc0a8aa8bc5100e3c (diff)
downloadframeworks_base-b4de3dca96b9ff18562062e181dcd8b83e641e45.zip
frameworks_base-b4de3dca96b9ff18562062e181dcd8b83e641e45.tar.gz
frameworks_base-b4de3dca96b9ff18562062e181dcd8b83e641e45.tar.bz2
Merge "OBB: rearrange to be entirely asynchronous" into gingerbread
Diffstat (limited to 'include')
-rw-r--r--include/storage/IMountService.h4
-rw-r--r--include/storage/IObbActionListener.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/include/storage/IMountService.h b/include/storage/IMountService.h
index 436fc38..51f9aeb 100644
--- a/include/storage/IMountService.h
+++ b/include/storage/IMountService.h
@@ -61,9 +61,9 @@ public:
virtual void shutdown(const sp<IMountShutdownObserver>& observer) = 0;
virtual void finishMediaUpdate() = 0;
virtual void mountObb(const String16& filename, const String16& key,
- const sp<IObbActionListener>& token) = 0;
+ const sp<IObbActionListener>& token, const int32_t nonce) = 0;
virtual void unmountObb(const String16& filename, const bool force,
- const sp<IObbActionListener>& token) = 0;
+ const sp<IObbActionListener>& token, const int32_t nonce) = 0;
virtual bool isObbMounted(const String16& filename) = 0;
virtual bool getMountedObbPath(const String16& filename, String16& path) = 0;
};
diff --git a/include/storage/IObbActionListener.h b/include/storage/IObbActionListener.h
index 1bedcc6..d78273c 100644
--- a/include/storage/IObbActionListener.h
+++ b/include/storage/IObbActionListener.h
@@ -29,7 +29,7 @@ class IObbActionListener: public IInterface
public:
DECLARE_META_INTERFACE(ObbActionListener);
- virtual void onObbResult(const String16& filename, const String16& status) = 0;
+ virtual void onObbResult(const String16& filename, const int32_t nonce, const int32_t state) = 0;
};
// ----------------------------------------------------------------------------