OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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_TEST_LICENSE_SERVER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_TEST_LICENSE_SERVER_H_ |
6 #define CHROME_BROWSER_MEDIA_TEST_LICENSE_SERVER_H_ | 6 #define CHROME_BROWSER_MEDIA_TEST_LICENSE_SERVER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/process/process_handle.h" | 10 #include "base/process/process.h" |
11 | 11 |
12 class TestLicenseServerConfig; | 12 class TestLicenseServerConfig; |
13 | 13 |
14 // Class used to start a test license server. | 14 // Class used to start a test license server. |
15 class TestLicenseServer { | 15 class TestLicenseServer { |
16 public: | 16 public: |
17 explicit TestLicenseServer(scoped_ptr<TestLicenseServerConfig> server_config); | 17 explicit TestLicenseServer(scoped_ptr<TestLicenseServerConfig> server_config); |
18 ~TestLicenseServer(); | 18 ~TestLicenseServer(); |
19 | 19 |
20 // Returns true if the server started successfully. False otherwise. | 20 // Returns true if the server started successfully. False otherwise. |
21 bool Start(); | 21 bool Start(); |
22 // Returns true if the server was stopped successfully. False otherwise. | 22 // Returns true if the server was stopped successfully. False otherwise. |
23 bool Stop(); | 23 bool Stop(); |
24 // Returns a string containing the URL and port the server is listening to. | 24 // Returns a string containing the URL and port the server is listening to. |
25 std::string GetServerURL(); | 25 std::string GetServerURL(); |
26 | 26 |
27 private: | 27 private: |
28 // License server configuration class used to obtain server paths, etc. | 28 // License server configuration class used to obtain server paths, etc. |
29 scoped_ptr<TestLicenseServerConfig> server_config_; | 29 scoped_ptr<TestLicenseServerConfig> server_config_; |
30 // Process handle for the license server. | 30 // Process for the license server. |
31 base::ProcessHandle license_server_process_; | 31 base::Process license_server_process_; |
32 | 32 |
33 DISALLOW_COPY_AND_ASSIGN(TestLicenseServer); | 33 DISALLOW_COPY_AND_ASSIGN(TestLicenseServer); |
34 }; | 34 }; |
35 | 35 |
36 #endif // CHROME_BROWSER_MEDIA_TEST_LICENSE_SERVER_H_ | 36 #endif // CHROME_BROWSER_MEDIA_TEST_LICENSE_SERVER_H_ |
OLD | NEW |