OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // IPC messages for EME on android. | 5 // IPC messages for EME on android. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "content/public/common/eme_codec.h" | 10 #include "content/public/common/eme_codec.h" |
(...skipping 11 matching lines...) Expand all Loading... | |
22 IPC_STRUCT_MEMBER(content::SupportedCodecs, | 22 IPC_STRUCT_MEMBER(content::SupportedCodecs, |
23 compositing_codecs, | 23 compositing_codecs, |
24 content::EME_CODEC_NONE) | 24 content::EME_CODEC_NONE) |
25 IPC_STRUCT_MEMBER(content::SupportedCodecs, | 25 IPC_STRUCT_MEMBER(content::SupportedCodecs, |
26 non_compositing_codecs, | 26 non_compositing_codecs, |
27 content::EME_CODEC_NONE) | 27 content::EME_CODEC_NONE) |
28 IPC_STRUCT_END() | 28 IPC_STRUCT_END() |
29 | 29 |
30 // Messages sent from the renderer to the browser. | 30 // Messages sent from the renderer to the browser. |
31 | 31 |
32 // Synchronously get a list of supported EME key systems. | 32 // Synchronously query a supported EME key system information. |
ddorwin
2014/06/11 01:54:01
Synchronously query key system information. If the
ycheo (away)
2014/06/11 07:43:43
Done.
| |
33 IPC_SYNC_MESSAGE_CONTROL1_1( | 33 IPC_SYNC_MESSAGE_CONTROL1_1( |
34 ChromeViewHostMsg_GetSupportedKeySystems, | 34 ChromeViewHostMsg_QueryKeySystemInfo, |
35 SupportedKeySystemRequest /* key system information request */, | 35 SupportedKeySystemRequest /* key system information request */, |
36 SupportedKeySystemResponse /* key system information response */) | 36 SupportedKeySystemResponse /* key system information response */) |
37 | |
38 // Synchronously get a list of platform supported EME key system names | |
ddorwin
2014/06/11 01:54:01
nit: add a '-" before "supported" if that's really
ycheo (away)
2014/06/11 07:43:43
Done.
| |
39 // besides WideVine. | |
ddorwin
2014/06/11 01:54:01
My point was that these are a special class that a
ycheo (away)
2014/06/11 07:43:43
Done.
| |
40 IPC_SYNC_MESSAGE_CONTROL0_1( | |
41 ChromeViewHostMsg_GetPlatformKeySystemNames, | |
42 std::vector<std::string> /* key system names */) | |
OLD | NEW |