diff options
author | Jeff Brown <jeffbrown@google.com> | 2012-02-14 17:11:41 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-02-14 17:11:41 -0800 |
commit | 91ec0b722f659bb5e4bcc64339f2fbbe30a31287 (patch) | |
tree | 2a664637f4b65eeb528a9ff256d9380c9c089adf /include | |
parent | 79952ee29a8fc67b6d76a8db747bb72dd7d6ecd1 (diff) | |
parent | 91e328984c0d1e0f95b3d37f779d9d4fa9bfe8f8 (diff) | |
download | frameworks_base-91ec0b722f659bb5e4bcc64339f2fbbe30a31287.zip frameworks_base-91ec0b722f659bb5e4bcc64339f2fbbe30a31287.tar.gz frameworks_base-91ec0b722f659bb5e4bcc64339f2fbbe30a31287.tar.bz2 |
Merge "Clean up InputChannel file descriptor data type."
Diffstat (limited to 'include')
-rw-r--r-- | include/ui/InputTransport.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ui/InputTransport.h b/include/ui/InputTransport.h index 1f738cd..0facce3 100644 --- a/include/ui/InputTransport.h +++ b/include/ui/InputTransport.h @@ -123,7 +123,7 @@ protected: virtual ~InputChannel(); public: - InputChannel(const String8& name, int32_t fd); + InputChannel(const String8& name, int fd); /* Creates a pair of input channels. * @@ -133,7 +133,7 @@ public: sp<InputChannel>& outServerChannel, sp<InputChannel>& outClientChannel); inline String8 getName() const { return mName; } - inline int32_t getFd() const { return mFd; } + inline int getFd() const { return mFd; } /* Sends a message to the other endpoint. * @@ -162,7 +162,7 @@ public: private: String8 mName; - int32_t mFd; + int mFd; }; /* |