diff options
author | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-18 00:41:22 +0000 |
---|---|---|
committer | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-18 00:41:22 +0000 |
commit | 5f79c2adde064424d6b19f8673ef82e9cb92774d (patch) | |
tree | ecf40509498dce2ed6b04ab1ff5ac3d694d307e1 /ppapi/c/pp_resource.h | |
parent | 30c918084bac874b6cfaabb93f0bb2545c5354e2 (diff) | |
download | chromium_src-5f79c2adde064424d6b19f8673ef82e9cb92774d.zip chromium_src-5f79c2adde064424d6b19f8673ef82e9cb92774d.tar.gz chromium_src-5f79c2adde064424d6b19f8673ef82e9cb92774d.tar.bz2 |
Integrate NaCl Head - Revert 69309 to restore 64b handles in PPAPI
BUG= http://code.google.com/p/nativeclient/issues/detail?id=933
TEST=It compiles can run the nacl ppapi srpc test
Review URL: http://codereview.chromium.org/6041001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69602 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/pp_resource.h')
-rw-r--r-- | ppapi/c/pp_resource.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/c/pp_resource.h b/ppapi/c/pp_resource.h index e81780e..c3d1aca 100644 --- a/ppapi/c/pp_resource.h +++ b/ppapi/c/pp_resource.h @@ -30,8 +30,8 @@ * it to 0 to indicate a "NULL handle." Some interfaces may return a NULL * resource to indicate failure. */ -typedef int32_t PP_Resource; -PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Resource, 4); +typedef int64_t PP_Resource; +PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Resource, 8); /** * @} |