diff options
author | neb@chromium.org <neb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-14 05:52:23 +0000 |
---|---|---|
committer | neb@chromium.org <neb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-14 05:52:23 +0000 |
commit | b78806093a57c48917e709ea46b7ce1b2ab0f693 (patch) | |
tree | 6d4965f88bf2a791a1671177fe7bc23396287046 /ppapi/c/pp_module.h | |
parent | 502b937c355c991645a3b88bf59d678862b7b8ff (diff) | |
download | chromium_src-b78806093a57c48917e709ea46b7ce1b2ab0f693.zip chromium_src-b78806093a57c48917e709ea46b7ce1b2ab0f693.tar.gz chromium_src-b78806093a57c48917e709ea46b7ce1b2ab0f693.tar.bz2 |
Revert of revert 69309 - switch handles to 32 bit in PPAPI.
David Sehr helped me get the NaCl side working so I'll try to land this again.
Previous CL at http://codereview.chromium.org/5837001
BUG=69474
TEST=compiles
Review URL: http://codereview.chromium.org/6231003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71419 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/pp_module.h')
-rw-r--r-- | ppapi/c/pp_module.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/c/pp_module.h b/ppapi/c/pp_module.h index 6c0ee0f..02373b2 100644 --- a/ppapi/c/pp_module.h +++ b/ppapi/c/pp_module.h @@ -21,8 +21,8 @@ * handle assigned by the browser to the plugin. It is guaranteed never to be * 0, so a plugin can initialize it to 0 to indicate a "NULL handle." */ -typedef int64_t PP_Module; -PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Module, 8); +typedef int32_t PP_Module; +PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Module, 4); /** * @} |