Chromium Code Reviews| Index: components/cdm/renderer/android_key_systems.h |
| diff --git a/components/cdm/renderer/android_key_systems.h b/components/cdm/renderer/android_key_systems.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..02fb7955bd353c39d80d1c281765f732903df99d |
| --- /dev/null |
| +++ b/components/cdm/renderer/android_key_systems.h |
| @@ -0,0 +1,21 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef COMPONENTS_CDM_RENDERER_ANDROID_KEY_SYSTEMS_H_ |
| +#define COMPONENTS_CDM_RENDERER_ANDROID_KEY_SYSTEMS_H_ |
| + |
| +#include <vector> |
| + |
| +#include "content/public/renderer/key_system_info.h" |
| + |
| +namespace cdm { |
| + |
| +void AddAndroidWidevine( |
| + std::vector<content::KeySystemInfo>* concrete_key_systems); |
| +void AddOtherAndroidSupportedKeySystems( |
|
ddorwin
2014/06/10 18:48:04
The name is odd. Maybe AddAndroidPlatformKeySystem
ycheo (away)
2014/06/11 00:08:22
Done.
|
| + std::vector<content::KeySystemInfo>* concrete_key_systems); |
| + |
| +} // namespace cdm |
| + |
| +#endif // COMPONENTS_CDM_RENDERER_ANDROID_KEY_SYSTEMS_H_ |