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

Side by Side Diff: ppapi/c/private/ppb_content_decryptor_private.h

Issue 11270057: Add type argument to pepper content decryptor method GenerateKeyRequest(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased and addressed TODOs related to integration of this CL. Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 /* From private/ppb_content_decryptor_private.idl, 6 /* From private/ppb_content_decryptor_private.idl,
7 * modified Mon Oct 22 19:48:14 2012. 7 * modified Fri Oct 26 14:47:38 2012.
8 */ 8 */
9 9
10 #ifndef PPAPI_C_PRIVATE_PPB_CONTENT_DECRYPTOR_PRIVATE_H_ 10 #ifndef PPAPI_C_PRIVATE_PPB_CONTENT_DECRYPTOR_PRIVATE_H_
11 #define PPAPI_C_PRIVATE_PPB_CONTENT_DECRYPTOR_PRIVATE_H_ 11 #define PPAPI_C_PRIVATE_PPB_CONTENT_DECRYPTOR_PRIVATE_H_
12 12
13 #include "ppapi/c/pp_bool.h" 13 #include "ppapi/c/pp_bool.h"
14 #include "ppapi/c/pp_instance.h" 14 #include "ppapi/c/pp_instance.h"
15 #include "ppapi/c/pp_macros.h" 15 #include "ppapi/c/pp_macros.h"
16 #include "ppapi/c/pp_resource.h" 16 #include "ppapi/c/pp_resource.h"
17 #include "ppapi/c/pp_stdint.h" 17 #include "ppapi/c/pp_stdint.h"
18 #include "ppapi/c/pp_var.h" 18 #include "ppapi/c/pp_var.h"
19 #include "ppapi/c/private/pp_content_decryptor.h" 19 #include "ppapi/c/private/pp_content_decryptor.h"
20 20
21 #define PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE_0_5 \ 21 #define PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE_0_6 \
22 "PPB_ContentDecryptor_Private;0.5" 22 "PPB_ContentDecryptor_Private;0.6"
23 #define PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE \ 23 #define PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE \
24 PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE_0_5 24 PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE_0_6
25 25
26 /** 26 /**
27 * @file 27 * @file
28 * This file defines the <code>PPB_ContentDecryptor_Private</code> 28 * This file defines the <code>PPB_ContentDecryptor_Private</code>
29 * interface. Note: This is a special interface, only to be used for Content 29 * interface. Note: This is a special interface, only to be used for Content
30 * Decryption Modules, not normal plugins. 30 * Decryption Modules, not normal plugins.
31 */ 31 */
32 32
33 33
34 /** 34 /**
35 * @addtogroup Interfaces 35 * @addtogroup Interfaces
36 * @{ 36 * @{
37 */ 37 */
38 /** 38 /**
39 * <code>PPB_ContentDecryptor_Private</code> structure contains the function 39 * <code>PPB_ContentDecryptor_Private</code> structure contains the function
40 * pointers the browser must implement to support plugins implementing the 40 * pointers the browser must implement to support plugins implementing the
41 * <code>PPP_ContentDecryptor_Private</code> interface. This interface provides 41 * <code>PPP_ContentDecryptor_Private</code> interface. This interface provides
42 * browser side support for the Content Decryption Module (CDM) for v0.1 of the 42 * browser side support for the Content Decryption Module (CDM) for v0.1 of the
43 * proposed Encrypted Media Extensions: http://goo.gl/rbdnR 43 * proposed Encrypted Media Extensions: http://goo.gl/rbdnR
44 */ 44 */
45 struct PPB_ContentDecryptor_Private_0_5 { 45 struct PPB_ContentDecryptor_Private_0_6 {
46 /** 46 /**
47 * The decryptor requires a key that has not been provided. 47 * The decryptor requires a key that has not been provided.
48 * 48 *
49 * Sent when the decryptor encounters encrypted content, but it does not have 49 * Sent when the decryptor encounters encrypted content, but it does not have
50 * the key required to decrypt the data. The plugin will call this method in 50 * the key required to decrypt the data. The plugin will call this method in
51 * response to a call to the <code>Decrypt()</code> method on the 51 * response to a call to the <code>Decrypt()</code> method on the
52 * <code>PPP_ContentDecryptor_Private<code> interface. 52 * <code>PPP_ContentDecryptor_Private<code> interface.
53 * 53 *
54 * The browser must notify the application that a key is needed, and, in 54 * The browser must notify the application that a key is needed, and, in
55 * response, the web application must direct the browser to call 55 * response, the web application must direct the browser to call
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 * @param[in] decrypted_block_info A <code>PP_DecryptedBlockInfo</code> that 250 * @param[in] decrypted_block_info A <code>PP_DecryptedBlockInfo</code> that
251 * contains the tracking info and result code associated with the 251 * contains the tracking info and result code associated with the
252 * <code>decrypted_block</code>. 252 * <code>decrypted_block</code>.
253 */ 253 */
254 void (*DeliverSamples)( 254 void (*DeliverSamples)(
255 PP_Instance instance, 255 PP_Instance instance,
256 PP_Resource audio_frames, 256 PP_Resource audio_frames,
257 const struct PP_DecryptedBlockInfo* decrypted_block_info); 257 const struct PP_DecryptedBlockInfo* decrypted_block_info);
258 }; 258 };
259 259
260 typedef struct PPB_ContentDecryptor_Private_0_5 PPB_ContentDecryptor_Private; 260 typedef struct PPB_ContentDecryptor_Private_0_6 PPB_ContentDecryptor_Private;
261 /** 261 /**
262 * @} 262 * @}
263 */ 263 */
264 264
265 #endif /* PPAPI_C_PRIVATE_PPB_CONTENT_DECRYPTOR_PRIVATE_H_ */ 265 #endif /* PPAPI_C_PRIVATE_PPB_CONTENT_DECRYPTOR_PRIVATE_H_ */
266 266
OLDNEW
« no previous file with comments | « ppapi/api/private/ppp_content_decryptor_private.idl ('k') | ppapi/c/private/ppp_content_decryptor_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698