OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |