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

Side by Side Diff: media/base/key_system_properties.h

Issue 1927953004: Reland of "Convert Widevine and Android platform key systems to KeySystemProperties" with fix (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 7 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
« no previous file with comments | « components/cdm/renderer/widevine_key_systems.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef MEDIA_BASE_KEY_SYSTEM_PROPERTIES_H_ 5 #ifndef MEDIA_BASE_KEY_SYSTEM_PROPERTIES_H_
6 #define MEDIA_BASE_KEY_SYSTEM_PROPERTIES_H_ 6 #define MEDIA_BASE_KEY_SYSTEM_PROPERTIES_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "build/build_config.h"
10 #include "media/base/eme_constants.h" 11 #include "media/base/eme_constants.h"
11 #include "media/base/key_system_info.h" 12 #include "media/base/key_system_info.h"
12 #include "media/base/media_export.h" 13 #include "media/base/media_export.h"
13 14
14 namespace media { 15 namespace media {
15 16
16 // Provides an interface for querying the properties of a registered key system. 17 // Provides an interface for querying the properties of a registered key system.
17 class MEDIA_EXPORT KeySystemProperties { 18 class MEDIA_EXPORT KeySystemProperties {
18 public: 19 public:
19 virtual ~KeySystemProperties() {} 20 virtual ~KeySystemProperties() {}
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 std::string GetPepperType() const override; 86 std::string GetPepperType() const override;
86 #endif 87 #endif
87 88
88 private: 89 private:
89 const KeySystemInfo info_; 90 const KeySystemInfo info_;
90 }; 91 };
91 92
92 } // namespace media 93 } // namespace media
93 94
94 #endif // MEDIA_BASE_KEY_SYSTEM_PROPERTIES_H_ 95 #endif // MEDIA_BASE_KEY_SYSTEM_PROPERTIES_H_
OLDNEW
« no previous file with comments | « components/cdm/renderer/widevine_key_systems.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698