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 /* From private/pp_content_decryptor.idl modified Mon Jul 20 16:41:39 2015. */ | 6 /* From private/pp_content_decryptor.idl modified Wed Sep 16 16:45:25 2015. */ |
7 | 7 |
8 #ifndef PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_ | 8 #ifndef PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_ |
9 #define PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_ | 9 #define PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_ |
10 | 10 |
11 #include "ppapi/c/pp_macros.h" | 11 #include "ppapi/c/pp_macros.h" |
12 #include "ppapi/c/pp_stdint.h" | 12 #include "ppapi/c/pp_stdint.h" |
13 | 13 |
14 /** | 14 /** |
15 * @file | 15 * @file |
16 * The <code>PP_DecryptTrackingInfo</code> struct contains necessary information | 16 * The <code>PP_DecryptTrackingInfo</code> struct contains necessary information |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 | 496 |
497 /** | 497 /** |
498 * <code>PP_CdmKeyStatus</code> contains key status constants. | 498 * <code>PP_CdmKeyStatus</code> contains key status constants. |
499 */ | 499 */ |
500 typedef enum { | 500 typedef enum { |
501 PP_CDMKEYSTATUS_USABLE = 0, | 501 PP_CDMKEYSTATUS_USABLE = 0, |
502 PP_CDMKEYSTATUS_INVALID = 1, | 502 PP_CDMKEYSTATUS_INVALID = 1, |
503 PP_CDMKEYSTATUS_EXPIRED = 2, | 503 PP_CDMKEYSTATUS_EXPIRED = 2, |
504 PP_CDMKEYSTATUS_OUTPUTRESTRICTED = 3, | 504 PP_CDMKEYSTATUS_OUTPUTRESTRICTED = 3, |
505 PP_CDMKEYSTATUS_OUTPUTDOWNSCALED = 4, | 505 PP_CDMKEYSTATUS_OUTPUTDOWNSCALED = 4, |
506 PP_CDMKEYSTATUS_STATUSPENDING = 5 | 506 PP_CDMKEYSTATUS_STATUSPENDING = 5, |
| 507 PP_CDMKEYSTATUS_RELEASED = 6 |
507 } PP_CdmKeyStatus; | 508 } PP_CdmKeyStatus; |
508 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_CdmKeyStatus, 4); | 509 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_CdmKeyStatus, 4); |
509 /** | 510 /** |
510 * @} | 511 * @} |
511 */ | 512 */ |
512 | 513 |
513 /** | 514 /** |
514 * @addtogroup Structs | 515 * @addtogroup Structs |
515 * @{ | 516 * @{ |
516 */ | 517 */ |
(...skipping 16 matching lines...) Expand all Loading... |
533 */ | 534 */ |
534 uint32_t system_code; | 535 uint32_t system_code; |
535 }; | 536 }; |
536 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_KeyInformation, 524); | 537 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_KeyInformation, 524); |
537 /** | 538 /** |
538 * @} | 539 * @} |
539 */ | 540 */ |
540 | 541 |
541 #endif /* PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_ */ | 542 #endif /* PPAPI_C_PRIVATE_PP_CONTENT_DECRYPTOR_H_ */ |
542 | 543 |
OLD | NEW |