diff options
author | toyoshim@chromium.org <toyoshim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-11 08:56:10 +0000 |
---|---|---|
committer | toyoshim@chromium.org <toyoshim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-11 08:56:10 +0000 |
commit | 1d2c3afe6de6243a861781d74715c651b1d1691c (patch) | |
tree | 925ecf54f9b16dc5f9833fe4eb6750e996659de8 /content/public/test/browser_test_base.h | |
parent | 55bd3364e18dad8d61199cb9d499d36655c1a813 (diff) | |
download | chromium_src-1d2c3afe6de6243a861781d74715c651b1d1691c.zip chromium_src-1d2c3afe6de6243a861781d74715c651b1d1691c.tar.gz chromium_src-1d2c3afe6de6243a861781d74715c651b1d1691c.tar.bz2 |
BrowserTestBase::CreateTestServer should accept FilePath
BUG=none
TEST=browser_tests, content_browsertests
Review URL: https://chromiumcodereview.appspot.com/11094040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161318 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/test/browser_test_base.h')
-rw-r--r-- | content/public/test/browser_test_base.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/public/test/browser_test_base.h b/content/public/test/browser_test_base.h index 40c9e0f..121b429 100644 --- a/content/public/test/browser_test_base.h +++ b/content/public/test/browser_test_base.h @@ -10,6 +10,7 @@ #include "net/test/test_server.h" class CommandLine; +class FilePath; namespace content { @@ -76,7 +77,7 @@ class BrowserTestBase : public testing::Test { // this. // |test_server_base| is the path, relative to src, to give to the test HTTP // server. - void CreateTestServer(const char* test_server_base); + void CreateTestServer(const FilePath& test_server_base); private: void ProxyRunTestOnMainThreadLoop(); |