Chromium Code Reviews| Index: ppapi/api/private/pp_content_decryptor.idl |
| diff --git a/ppapi/api/private/pp_content_decryptor.idl b/ppapi/api/private/pp_content_decryptor.idl |
| index 248b7356b2d29946e6c7b48f062ae3064d0d44f1..7eb2ba1eaf503d62a97060c42104a420fe6a6c0b 100644 |
| --- a/ppapi/api/private/pp_content_decryptor.idl |
| +++ b/ppapi/api/private/pp_content_decryptor.idl |
| @@ -260,3 +260,13 @@ struct PP_DecryptedFrameInfo { |
| */ |
| PP_DecryptTrackingInfo tracking_info; |
| }; |
| + |
| +/** |
| + * <code>PP_StreamType</code> contains stream type constants. |
| + */ |
| +[assert_size(4)] |
| +enum PP_StreamType { |
|
brettw
2012/10/11 20:53:43
Can you give this struct (and the defines below) a
Tom Finegan
2012/10/12 05:01:56
Done.
|
| + PP_STREAMTYPE_UNKNOWN = 0, |
| + PP_STREAMTYPE_AUDIO = 1, |
| + PP_STREAMTYPE_VIDEO = 2 |
| +}; |