diff options
author | Bill Yi <byi@google.com> | 2014-04-29 11:34:19 -0700 |
---|---|---|
committer | Bill Yi <byi@google.com> | 2014-04-29 11:34:19 -0700 |
commit | e4f00b2aaea069474c342e257a0e8e191245905a (patch) | |
tree | 0387ac89d861dad2681630f8579d8c7ffebc69bd /include | |
parent | 108ed9fa946ec516c0d853927c76ebbfca1dcb23 (diff) | |
parent | 6d05ef2310bdc84811d5b0385b009ad11447a749 (diff) | |
download | frameworks_native-e4f00b2aaea069474c342e257a0e8e191245905a.zip frameworks_native-e4f00b2aaea069474c342e257a0e8e191245905a.tar.gz frameworks_native-e4f00b2aaea069474c342e257a0e8e191245905a.tar.bz2 |
Merge commit '6d05ef2310bdc84811d5b0385b009ad11447a749' into HEAD
Diffstat (limited to 'include')
-rw-r--r-- | include/binder/Parcel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/binder/Parcel.h b/include/binder/Parcel.h index ed2e7df..ce630bd 100644 --- a/include/binder/Parcel.h +++ b/include/binder/Parcel.h @@ -105,6 +105,7 @@ public: status_t writeStrongBinder(const sp<IBinder>& val); status_t writeWeakBinder(const wp<IBinder>& val); status_t writeInt32Array(size_t len, const int32_t *val); + status_t writeByteArray(size_t len, const uint8_t *val); template<typename T> status_t write(const Flattenable<T>& val); |