Chromium Code Reviews| 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 * The <code>PP_DecryptTrackingInfo</code> struct contains necessary information | 7 * The <code>PP_DecryptTrackingInfo</code> struct contains necessary information |
| 8 * that can be used to associate the decrypted block with a decrypt request | 8 * that can be used to associate the decrypted block with a decrypt request |
| 9 * and/or an input block. | 9 * and/or an input block. |
| 10 */ | 10 */ |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 354 }; | 354 }; |
| 355 | 355 |
| 356 /** | 356 /** |
| 357 * <code>PP_DecryptorStreamType</code> contains stream type constants. | 357 * <code>PP_DecryptorStreamType</code> contains stream type constants. |
| 358 */ | 358 */ |
| 359 [assert_size(4)] | 359 [assert_size(4)] |
| 360 enum PP_DecryptorStreamType { | 360 enum PP_DecryptorStreamType { |
| 361 PP_DECRYPTORSTREAMTYPE_AUDIO = 0, | 361 PP_DECRYPTORSTREAMTYPE_AUDIO = 0, |
| 362 PP_DECRYPTORSTREAMTYPE_VIDEO = 1 | 362 PP_DECRYPTORSTREAMTYPE_VIDEO = 1 |
| 363 }; | 363 }; |
| 364 | |
| 365 /** | |
| 366 * <code>PP_KeySystemFlags</code> contains additional information for the key | |
|
ddorwin
2013/09/18 21:26:53
nit: maybe "for CDM initialization". Same with the
jrummell
2013/09/19 00:37:28
Done.
| |
| 367 * system. | |
| 368 */ | |
| 369 [assert_size(4)] | |
| 370 struct PP_KeySystemFlags { | |
| 371 /** | |
| 372 * Indicates if the underlying host platform can be challenged; | |
| 373 * i.e., verified as a trusted platform. | |
| 374 */ | |
| 375 PP_Bool can_challenge_platform; | |
|
DaleCurtis
2013/09/18 21:29:30
FYI, dmichael@ I'm going to rip out the CanChallen
dmichael (off chromium)
2013/09/18 22:52:32
FWIW, if you're invoking from a background thread,
| |
| 376 }; | |
| OLD | NEW |