summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2013-07-12 16:32:00 -0700
committerJeff Brown <jeffbrown@google.com>2013-07-15 15:08:39 -0700
commitada11c5e67cf8587ad3b53dd99c27455ef26291f (patch)
tree5544618d7e1c55af2582f47ea3332d826ab326eb /include
parentb05c4e0f34df0208dd900f1013ad61acb382f9ad (diff)
downloadframeworks_native-ada11c5e67cf8587ad3b53dd99c27455ef26291f.zip
frameworks_native-ada11c5e67cf8587ad3b53dd99c27455ef26291f.tar.gz
frameworks_native-ada11c5e67cf8587ad3b53dd99c27455ef26291f.tar.bz2
Make getCallingUid/Pid const.
Change-Id: I1853b21eaa45d85274189dfd72f73fec48d0d6b7
Diffstat (limited to 'include')
-rw-r--r--include/binder/IPCThreadState.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/binder/IPCThreadState.h b/include/binder/IPCThreadState.h
index ad0daee..5bc123e 100644
--- a/include/binder/IPCThreadState.h
+++ b/include/binder/IPCThreadState.h
@@ -39,8 +39,8 @@ public:
status_t clearLastError();
- int getCallingPid();
- int getCallingUid();
+ int getCallingPid() const;
+ int getCallingUid() const;
void setStrictModePolicy(int32_t policy);
int32_t getStrictModePolicy() const;