| 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>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 Loading... |
| 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 }; |
| OLD | NEW |