OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 CHROME_BROWSER_MEDIA_PEPPER_CDM_TEST_HELPER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_PEPPER_CDM_TEST_HELPER_H_ |
6 #define CHROME_BROWSER_MEDIA_PEPPER_CDM_TEST_HELPER_H_ | 6 #define CHROME_BROWSER_MEDIA_PEPPER_CDM_TEST_HELPER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 | 11 |
12 namespace base { | 12 namespace base { |
13 class CommandLine; | 13 class CommandLine; |
14 } | 14 } |
15 | 15 |
16 // Base path for Clear Key CDM (relative to the chrome executable). | 16 // Display name for Clear Key CDM. |
17 extern const char kClearKeyCdmBaseDirectory[]; | 17 extern const char kClearKeyCdmDisplayName[]; |
18 | 18 |
19 // Platform-specific filename relative to kClearKeyCdmBaseDirectory. | 19 // Platform-specific filename relative to kClearKeyCdmBaseDirectory. |
20 extern const char kClearKeyCdmAdapterFileName[]; | 20 extern const char kClearKeyCdmAdapterFileName[]; |
21 | 21 |
22 // Display name for Clear Key CDM. | |
23 extern const char kClearKeyCdmDisplayName[]; | |
24 | |
25 // Pepper type for Clear Key CDM. | 22 // Pepper type for Clear Key CDM. |
26 extern const char kClearKeyCdmPepperMimeType[]; | 23 extern const char kClearKeyCdmPepperMimeType[]; |
27 | 24 |
28 // Builds the string to pass to kRegisterPepperPlugins for a single | 25 // Builds the string to pass to kRegisterPepperPlugins for a single |
29 // CDM using the provided parameters and a dummy version. | 26 // CDM using the provided parameters and a dummy version. |
30 // Multiple results may be passed to kRegisterPepperPlugins, separated by ",". | 27 // Multiple results may be passed to kRegisterPepperPlugins, separated by ",". |
31 // The CDM adapter should be located in DIR_MODULE. | 28 // The CDM adapter should be located in DIR_MODULE. |
32 base::FilePath::StringType BuildPepperCdmRegistration( | 29 base::FilePath::StringType BuildPepperCdmRegistration( |
33 const std::string& adapter_base_dir, | |
34 const std::string& adapter_file_name, | 30 const std::string& adapter_file_name, |
35 const std::string& display_name, | 31 const std::string& display_name, |
36 const std::string& mime_type, | 32 const std::string& mime_type, |
37 bool expect_adapter_exists = true); | 33 bool expect_adapter_exists = true); |
38 | 34 |
39 // Registers pepper CDM in |command_line|. | 35 // Registers pepper CDM in |command_line|. |
40 void RegisterPepperCdm(base::CommandLine* command_line, | 36 void RegisterPepperCdm(base::CommandLine* command_line, |
41 const std::string& adapter_base_dir, | |
42 const std::string& adapter_file_name, | 37 const std::string& adapter_file_name, |
43 const std::string& display_name, | 38 const std::string& display_name, |
44 const std::string& mime_type, | 39 const std::string& mime_type, |
45 bool expect_adapter_exists = true); | 40 bool expect_adapter_exists = true); |
46 | 41 |
47 #endif // CHROME_BROWSER_MEDIA_PEPPER_CDM_TEST_HELPER_H_ | 42 #endif // CHROME_BROWSER_MEDIA_PEPPER_CDM_TEST_HELPER_H_ |
OLD | NEW |