#ifndef CHROME_BROWSER_MEDIA_WV_TEST_LICENSE_SERVER_CONFIG_H_
#define CHROME_BROWSER_MEDIA_WV_TEST_LICENSE_SERVER_CONFIG_H_
#include "chrome/browser/media/test_license_server_config.h"
class WVTestLicenseServerConfig : public TestLicenseServerConfig {
public:
WVTestLicenseServerConfig();
virtual ~WVTestLicenseServerConfig();
virtual std::string GetServerURL() OVERRIDE;
virtual bool GetServerCommandLine(base::CommandLine* command_line) OVERRIDE;
virtual bool IsPlatformSupported() OVERRIDE;
private:
uint16 port_;
void GetLicenseServerRootPath(base::FilePath* path);
void GetLicenseServerPath(base::FilePath* path);
bool SelectServerPort();
DISALLOW_COPY_AND_ASSIGN(WVTestLicenseServerConfig);
};
#endif