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

Unified Diff: ppapi/api/private/pp_content_decryptor.idl

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 | « no previous file | ppapi/c/private/pp_content_decryptor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/private/pp_content_decryptor.idl
diff --git a/ppapi/api/private/pp_content_decryptor.idl b/ppapi/api/private/pp_content_decryptor.idl
index 6aa39e324b3750c961f49afc0caa52fef5b8100a..099cfe9f6d8669eb7daccfd06ef597bf43e8ae3c 100644
--- a/ppapi/api/private/pp_content_decryptor.idl
+++ b/ppapi/api/private/pp_content_decryptor.idl
@@ -15,7 +15,14 @@ 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,
« no previous file with comments | « no previous file | ppapi/c/private/pp_content_decryptor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698