Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: components/cdm/renderer/android_key_systems.h

Issue 320383005: Add an IPC to return the platform supported key-system names in Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed ddorwin's comments. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 AddAndroidPlatformKeySystems(
17 std::vector<content::KeySystemInfo>* concrete_key_systems);
xhwang 2014/06/11 23:12:28 Since these are in a new file. Add some comments a
ycheo (away) 2014/06/12 02:02:45 Done.
18
19 } // namespace cdm
20
21 #endif // COMPONENTS_CDM_RENDERER_ANDROID_KEY_SYSTEMS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698