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