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

Side by Side Diff: ppapi/api/private/ppb_content_decryptor_private.idl

Issue 11270057: Add type argument to pepper content decryptor method GenerateKeyRequest(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. 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 /** 6 /**
7 * This file defines the <code>PPB_ContentDecryptor_Private</code> 7 * This file defines the <code>PPB_ContentDecryptor_Private</code>
8 * interface. Note: This is a special interface, only to be used for Content 8 * interface. Note: This is a special interface, only to be used for Content
9 * Decryption Modules, not normal plugins. 9 * Decryption Modules, not normal plugins.
10 */ 10 */
11 label Chrome { 11 label Chrome {
12 M24 = 0.5 12 M24 = 0.6
13 }; 13 };
14 14
15 /** 15 /**
16 * <code>PPB_ContentDecryptor_Private</code> structure contains the function 16 * <code>PPB_ContentDecryptor_Private</code> structure contains the function
17 * pointers the browser must implement to support plugins implementing the 17 * pointers the browser must implement to support plugins implementing the
18 * <code>PPP_ContentDecryptor_Private</code> interface. This interface provides 18 * <code>PPP_ContentDecryptor_Private</code> interface. This interface provides
19 * browser side support for the Content Decryption Module (CDM) for v0.1 of the 19 * browser side support for the Content Decryption Module (CDM) for v0.1 of the
20 * proposed Encrypted Media Extensions: http://goo.gl/rbdnR 20 * proposed Encrypted Media Extensions: http://goo.gl/rbdnR
21 */ 21 */
22 interface PPB_ContentDecryptor_Private { 22 interface PPB_ContentDecryptor_Private {
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 * 242 *
243 * @param[in] decrypted_block_info A <code>PP_DecryptedBlockInfo</code> that 243 * @param[in] decrypted_block_info A <code>PP_DecryptedBlockInfo</code> that
244 * contains the tracking info and result code associated with the 244 * contains the tracking info and result code associated with the
245 * <code>decrypted_block</code>. 245 * <code>decrypted_block</code>.
246 */ 246 */
247 void DeliverSamples( 247 void DeliverSamples(
248 [in] PP_Instance instance, 248 [in] PP_Instance instance,
249 [in] PP_Resource audio_frames, 249 [in] PP_Resource audio_frames,
250 [in] PP_DecryptedBlockInfo decrypted_block_info); 250 [in] PP_DecryptedBlockInfo decrypted_block_info);
251 }; 251 };
OLDNEW
« no previous file with comments | « no previous file | ppapi/api/private/ppp_content_decryptor_private.idl » ('j') | webkit/media/crypto/ppapi/clear_key_cdm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698