diff options
author | abetul@google.com <abetul@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-04 20:35:55 +0000 |
---|---|---|
committer | abetul@google.com <abetul@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-04 20:35:55 +0000 |
commit | 92f3343fc7ca959d809c702d9281a87d88a28a8a (patch) | |
tree | 6ac54815f9e61b31430846f51d5a68edec3eda29 /third_party/npapi | |
parent | 1ee7ef3f5e7b740b0890b88f8bbd3a83dd83a3dd (diff) | |
download | chromium_src-92f3343fc7ca959d809c702d9281a87d88a28a8a.zip chromium_src-92f3343fc7ca959d809c702d9281a87d88a28a8a.tar.gz chromium_src-92f3343fc7ca959d809c702d9281a87d88a28a8a.tar.bz2 |
checksum computation that returns the least significant 32-bits of the 128-bit MD5 digest
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/666012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40650 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/npapi')
-rw-r--r-- | third_party/npapi/bindings/npapi_extensions_private.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/third_party/npapi/bindings/npapi_extensions_private.h b/third_party/npapi/bindings/npapi_extensions_private.h index 34c2af5..3b0a458 100644 --- a/third_party/npapi/bindings/npapi_extensions_private.h +++ b/third_party/npapi/bindings/npapi_extensions_private.h @@ -16,9 +16,12 @@ typedef enum { NPExtensionsReservedStateSharedMemorySize = 66537, // Used by the Audio device to return a pointer to the // structure used to implement the shared memory buffer for the device. - NPExtensionsReservedStateSyncChannel = 66538 + NPExtensionsReservedStateSyncChannel = 66538, // Used by the Audio device to return a pointer to the // structure used to implement the synchronization channel for the device. + NPExtensionsReservedStateSharedMemoryChecksum = 66539 + // Used by the Device2D to return the CRC32 checksum of the content + // stored in the shared memory buffer for the device. } NPExtensionsReservedStates; #endif /* _NP_EXTENSIONS_PRIVATE_H_ */ |