Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(933)

Unified Diff: ppapi/c/private/pp_content_decryptor.h

Issue 10871006: Connect PpapiDecryptor and PluginInstance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a minor bug happened during code copying. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/api/private/pp_content_decryptor.idl ('k') | webkit/media/crypto/ppapi_decryptor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/private/pp_content_decryptor.h
diff --git a/ppapi/c/private/pp_content_decryptor.h b/ppapi/c/private/pp_content_decryptor.h
index 8fd8d7c712bc573ec1c3ba0dfe37a22845ed1e96..114ac57c08cfdc95e90c00474fc2b05adebac260 100644
--- a/ppapi/c/private/pp_content_decryptor.h
+++ b/ppapi/c/private/pp_content_decryptor.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From private/pp_content_decryptor.idl modified Thu Aug 16 20:21:00 2012. */
+/* From private/pp_content_decryptor.idl modified Fri Aug 24 16:06:47 2012. */
#ifndef PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_
#define PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_
@@ -29,7 +29,13 @@ struct PP_DecryptTrackingInfo {
* this value, the client can associate the decrypted block with a decryption
* request.
*/
- uint64_t request_id;
+ uint32_t request_id;
+ /**
+ * 4-byte padding to make the size of <code>PP_DecryptTrackingInfo</code>
+ * a multiple of 8 bytes and make sure |timestamp| starts on 8-byte boundary.
+ * The value of this field should not be used.
+ */
+ uint32_t padding;
/**
* Timestamp in microseconds of the associated block. By using this value,
* the client can associate the decrypted (and decoded) data with an input
« no previous file with comments | « ppapi/api/private/pp_content_decryptor.idl ('k') | webkit/media/crypto/ppapi_decryptor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698