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

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

Issue 122683002: Drop data offset in PP_EncryptedBlockInfo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 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 11
12 [generate_thunk] 12 [generate_thunk]
13 13
14 label Chrome { 14 label Chrome {
15 M33 = 0.9 15 M34 = 0.10
16 }; 16 };
17 17
18 /** 18 /**
19 * <code>PPB_ContentDecryptor_Private</code> structure contains the function 19 * <code>PPB_ContentDecryptor_Private</code> structure contains the function
20 * pointers the browser must implement to support plugins implementing the 20 * pointers the browser must implement to support plugins implementing the
21 * <code>PPP_ContentDecryptor_Private</code> interface. This interface provides 21 * <code>PPP_ContentDecryptor_Private</code> interface. This interface provides
22 * browser side support for the Content Decryption Module (CDM) for Encrypted 22 * browser side support for the Content Decryption Module (CDM) for Encrypted
23 * Media Extensions: http://www.w3.org/TR/encrypted-media/ 23 * Media Extensions: http://www.w3.org/TR/encrypted-media/
24 */ 24 */
25 interface PPB_ContentDecryptor_Private { 25 interface PPB_ContentDecryptor_Private {
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 * 245 *
246 * @param[in] decrypted_sample_info A <code>PP_DecryptedSampleInfo</code> that 246 * @param[in] decrypted_sample_info A <code>PP_DecryptedSampleInfo</code> that
247 * contains the tracking info and result code associated with the decrypted 247 * contains the tracking info and result code associated with the decrypted
248 * samples. 248 * samples.
249 */ 249 */
250 void DeliverSamples( 250 void DeliverSamples(
251 [in] PP_Instance instance, 251 [in] PP_Instance instance,
252 [in] PP_Resource audio_frames, 252 [in] PP_Resource audio_frames,
253 [in] PP_DecryptedSampleInfo decrypted_sample_info); 253 [in] PP_DecryptedSampleInfo decrypted_sample_info);
254 }; 254 };
OLDNEW
« no previous file with comments | « ppapi/api/private/pp_content_decryptor.idl ('k') | ppapi/api/private/ppp_content_decryptor_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698