OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef COMPONENTS_CDM_RENDERER_ANDROID_KEY_SYSTEMS_H_ | |
6 #define COMPONENTS_CDM_RENDERER_ANDROID_KEY_SYSTEMS_H_ | |
7 | |
8 #include <vector> | |
9 | |
10 #include "content/public/renderer/key_system_info.h" | |
11 | |
12 namespace cdm { | |
13 | |
14 void AddAndroidWidevine( | |
15 std::vector<content::KeySystemInfo>* concrete_key_systems); | |
16 void AddOtherAndroidSupportedKeySystems( | |
ddorwin
2014/06/10 18:48:04
The name is odd. Maybe AddAndroidPlatformKeySystem
ycheo (away)
2014/06/11 00:08:22
Done.
| |
17 std::vector<content::KeySystemInfo>* concrete_key_systems); | |
18 | |
19 } // namespace cdm | |
20 | |
21 #endif // COMPONENTS_CDM_RENDERER_ANDROID_KEY_SYSTEMS_H_ | |
OLD | NEW |