diff options
| author | 2013-10-16 10:57:51 -0700 | |
|---|---|---|
| committer | 2013-10-25 12:50:04 -0700 | |
| commit | 708cc794f6ccd4d31e0a00a23b289272c665adc1 (patch) | |
| tree | 692a142f18ed435ad9d19b8eb2351335a95f767d /include | |
| parent | c354effe97be26638618e3bc0da81a3f8b384b20 (diff) | |
Native counterpart of new power manager method
Cherrypicked from master.
b/9464621
Change-Id: I54c0ed50a57ac870da91db8589a73a2c792dbd8d
Diffstat (limited to 'include')
| -rw-r--r-- | include/binder/Parcel.h | 1 | ||||
| -rw-r--r-- | include/powermanager/IPowerManager.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/binder/Parcel.h b/include/binder/Parcel.h index 7a782f5692..c95f297b4f 100644 --- a/include/binder/Parcel.h +++ b/include/binder/Parcel.h @@ -101,6 +101,7 @@ public: status_t writeString16(const char16_t* str, size_t len); status_t writeStrongBinder(const sp<IBinder>& val); status_t writeWeakBinder(const wp<IBinder>& val); + status_t writeInt32Array(size_t len, const int32_t *val); template<typename T> status_t write(const Flattenable<T>& val); diff --git a/include/powermanager/IPowerManager.h b/include/powermanager/IPowerManager.h index 2f4c3c46e2..d85003f4a8 100644 --- a/include/powermanager/IPowerManager.h +++ b/include/powermanager/IPowerManager.h @@ -35,6 +35,7 @@ public: virtual status_t acquireWakeLockWithUid(int flags, const sp<IBinder>& lock, const String16& tag, const String16& packageName, int uid) = 0; virtual status_t releaseWakeLock(const sp<IBinder>& lock, int flags) = 0; + virtual status_t updateWakeLockUids(const sp<IBinder>& lock, int len, const int *uids) = 0; }; // ---------------------------------------------------------------------------- |