summaryrefslogtreecommitdiffstats
path: root/include/binder/IBinder.h
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2009-05-27 14:34:50 -0700
committerMathias Agopian <mathias@google.com>2009-05-27 14:34:50 -0700
commit2da99bdaa1712f00525e6a84b58044332cb1baef (patch)
treeed330500de06dc645769ea87372fb624390b52a8 /include/binder/IBinder.h
parent947f4f4d384ea26eb2145cc070a3eed42c59534a (diff)
parentcc77841f643751fd9f128e90f7d1587445ef353e (diff)
downloadframeworks_base-2da99bdaa1712f00525e6a84b58044332cb1baef.zip
frameworks_base-2da99bdaa1712f00525e6a84b58044332cb1baef.tar.gz
frameworks_base-2da99bdaa1712f00525e6a84b58044332cb1baef.tar.bz2
Merge commit 'goog/master' into merge_master
Conflicts: include/ui/Rect.h libs/ui/ISurfaceComposer.cpp
Diffstat (limited to 'include/binder/IBinder.h')
-rw-r--r--include/binder/IBinder.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/binder/IBinder.h b/include/binder/IBinder.h
index 7370330..884b5c1 100644
--- a/include/binder/IBinder.h
+++ b/include/binder/IBinder.h
@@ -56,7 +56,7 @@ public:
FLAG_ONEWAY = 0x00000001
};
- inline IBinder() { }
+ IBinder();
/**
* Check if this IBinder implements the interface named by
@@ -69,7 +69,7 @@ public:
* Return the canonical name of the interface provided by this IBinder
* object.
*/
- virtual String16 getInterfaceDescriptor() const = 0;
+ virtual const String16& getInterfaceDescriptor() const = 0;
virtual bool isBinderAlive() const = 0;
virtual status_t pingBinder() = 0;
@@ -147,7 +147,7 @@ public:
virtual BpBinder* remoteBinder();
protected:
- inline virtual ~IBinder() { }
+ virtual ~IBinder();
private:
};