summaryrefslogtreecommitdiffstats
path: root/include/binder/IPCThreadState.h
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@android.com>2010-06-21 15:31:01 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-06-21 15:31:01 -0700
commitef8f96a717554a85aa63a60f8c61be2afbd12a5c (patch)
tree0a6550aabca59a3e91a5a3d88bdd5351ce14d043 /include/binder/IPCThreadState.h
parentd91ac98a8ead216b12af6df61d90229b74c7f0f6 (diff)
parent27b3a7a75960d026655f3acd1de8a672e80a5776 (diff)
downloadframeworks_base-ef8f96a717554a85aa63a60f8c61be2afbd12a5c.zip
frameworks_base-ef8f96a717554a85aa63a60f8c61be2afbd12a5c.tar.gz
frameworks_base-ef8f96a717554a85aa63a60f8c61be2afbd12a5c.tar.bz2
Merge "Start of work on passing around StrictMode policy over Binder calls." into gingerbread
Diffstat (limited to 'include/binder/IPCThreadState.h')
-rw-r--r--include/binder/IPCThreadState.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/binder/IPCThreadState.h b/include/binder/IPCThreadState.h
index 3ab985d..04e24d2 100644
--- a/include/binder/IPCThreadState.h
+++ b/include/binder/IPCThreadState.h
@@ -40,6 +40,9 @@ public:
int getCallingPid();
int getCallingUid();
+
+ void setStrictModePolicy(int32_t policy);
+ int32_t getStrictModePolicy() const;
int64_t clearCallingIdentity();
void restoreCallingIdentity(int64_t token);
@@ -109,8 +112,9 @@ private:
status_t mLastError;
pid_t mCallingPid;
uid_t mCallingUid;
+ int32_t mStrictModePolicy;
};
-
+
}; // namespace android
// ---------------------------------------------------------------------------