summaryrefslogtreecommitdiffstats
path: root/include/binder/IBinder.h
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2009-05-22 19:00:22 -0700
committerMathias Agopian <mathias@google.com>2009-05-26 16:12:20 -0700
commitaaf834a284a025cedd8ec1cf01d09e1790c1dcf8 (patch)
tree6314488c2ccaa1ab96923a1c771593ee65e7a726 /include/binder/IBinder.h
parent7f36a5729f17fcb37a7b65a13fd86b0d922caca9 (diff)
downloadframeworks_base-aaf834a284a025cedd8ec1cf01d09e1790c1dcf8.zip
frameworks_base-aaf834a284a025cedd8ec1cf01d09e1790c1dcf8.tar.gz
frameworks_base-aaf834a284a025cedd8ec1cf01d09e1790c1dcf8.tar.bz2
some work to try to reduce the code size of some native libraries
- make sure that all binder Bn classes define a ctor and dtor in their respective library. This avoids duplication of the ctor/dtor in libraries where these objects are instantiated. This is also cleaner, should we want these ctor/dtor to do something one day. - same change as above for some Bp classes and various other non-binder classes - moved the definition of CHECK_INTERFACE() in IInterface.h instead of having it everywhere. - improved the CHECK_INTERFACE() macro so it calls a single method in Parcel, instead of inlining its code everywhere - IBinder::getInterfaceDescriptor() now returns a "const String16&" instead of String16, which saves calls to String16 and ~String16 - implemented a cache for BpBinder::getInterfaceDescriptor(), since this does an IPC. HOWEVER, this method never seems to be called. The cache makes BpBinder bigger, so we need to figure out if we need this method at all.
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:
};