OLD | NEW |
---|---|
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>PPP_ContentDecryptor_Private</code> | 7 * This file defines the <code>PPP_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 M44 = 0.15 | 12 M48 = 0.16 |
xhwang
2015/10/19 20:47:26
There's no direct change in PPP_ContentDecryptor_P
bbudge
2015/10/20 17:38:15
I'm not that familiar with content decryption, but
xhwang
2015/10/20 18:30:54
See above.
| |
13 }; | 13 }; |
14 | 14 |
15 /** | 15 /** |
16 * <code>PPP_ContentDecryptor_Private</code> structure contains the function | 16 * <code>PPP_ContentDecryptor_Private</code> structure contains the function |
17 * pointers the decryption plugin must implement to provide services needed by | 17 * pointers the decryption plugin must implement to provide services needed by |
18 * the browser. This interface provides the plugin side support for the Content | 18 * the browser. This interface provides the plugin side support for the Content |
19 * Decryption Module (CDM) for Encrypted Media Extensions: | 19 * Decryption Module (CDM) for Encrypted Media Extensions: |
20 * http://www.w3.org/TR/encrypted-media/ | 20 * http://www.w3.org/TR/encrypted-media/ |
21 */ | 21 */ |
22 interface PPP_ContentDecryptor_Private { | 22 interface PPP_ContentDecryptor_Private { |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
295 * @param[in] encrypted_block_info A <code>PP_EncryptedBlockInfo</code> that | 295 * @param[in] encrypted_block_info A <code>PP_EncryptedBlockInfo</code> that |
296 * contains all auxiliary information needed for decryption of the | 296 * contains all auxiliary information needed for decryption of the |
297 * <code>encrypted_block</code>. | 297 * <code>encrypted_block</code>. |
298 */ | 298 */ |
299 void DecryptAndDecode( | 299 void DecryptAndDecode( |
300 [in] PP_Instance instance, | 300 [in] PP_Instance instance, |
301 [in] PP_DecryptorStreamType decoder_type, | 301 [in] PP_DecryptorStreamType decoder_type, |
302 [in] PP_Resource encrypted_buffer, | 302 [in] PP_Resource encrypted_buffer, |
303 [in] PP_EncryptedBlockInfo encrypted_block_info); | 303 [in] PP_EncryptedBlockInfo encrypted_block_info); |
304 }; | 304 }; |
OLD | NEW |