summaryrefslogtreecommitdiffstats
path: root/include/binder
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2010-04-21 09:10:43 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2010-04-21 09:10:43 -0700
commitf021d12f6f7116e9275cd3553a349ce5cb8aab14 (patch)
tree94cb2b13e3f75ad18ab56605781d1eb74698d07e /include/binder
parent172673cd5b21dee6e175ab67235aa19bc2689868 (diff)
parent5a870fee53ca94c7575503c72574ca0f068d52c7 (diff)
downloadframeworks_base-f021d12f6f7116e9275cd3553a349ce5cb8aab14.zip
frameworks_base-f021d12f6f7116e9275cd3553a349ce5cb8aab14.tar.gz
frameworks_base-f021d12f6f7116e9275cd3553a349ce5cb8aab14.tar.bz2
merge from open-source master
Change-Id: I08f1feae65b1dfc3f740d78654c267f2e3ae5e85
Diffstat (limited to 'include/binder')
-rw-r--r--include/binder/IInterface.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/include/binder/IInterface.h b/include/binder/IInterface.h
index 273d922..5f9f69c 100644
--- a/include/binder/IInterface.h
+++ b/include/binder/IInterface.h
@@ -72,21 +72,24 @@ protected:
// ----------------------------------------------------------------------
#define DECLARE_META_INTERFACE(INTERFACE) \
- static const String16 descriptor; \
- static sp<I##INTERFACE> asInterface(const sp<IBinder>& obj); \
- virtual const String16& getInterfaceDescriptor() const; \
+ static const android::String16 descriptor; \
+ static android::sp<I##INTERFACE> asInterface( \
+ const android::sp<android::IBinder>& obj); \
+ virtual const android::String16& getInterfaceDescriptor() const; \
I##INTERFACE(); \
virtual ~I##INTERFACE(); \
#define IMPLEMENT_META_INTERFACE(INTERFACE, NAME) \
- const String16 I##INTERFACE::descriptor(NAME); \
- const String16& I##INTERFACE::getInterfaceDescriptor() const { \
+ const android::String16 I##INTERFACE::descriptor(NAME); \
+ const android::String16& \
+ I##INTERFACE::getInterfaceDescriptor() const { \
return I##INTERFACE::descriptor; \
} \
- sp<I##INTERFACE> I##INTERFACE::asInterface(const sp<IBinder>& obj) \
+ android::sp<I##INTERFACE> I##INTERFACE::asInterface( \
+ const android::sp<android::IBinder>& obj) \
{ \
- sp<I##INTERFACE> intr; \
+ android::sp<I##INTERFACE> intr; \
if (obj != NULL) { \
intr = static_cast<I##INTERFACE*>( \
obj->queryLocalInterface( \