summaryrefslogtreecommitdiffstats
path: root/chrome/test/webdriver
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-17 05:07:23 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-17 05:07:23 +0000
commit023ad6abe4b833b9478992176b13b5a073895cdc (patch)
tree2f73c09690e0ccd85fff810c7db4404a5245aeca /chrome/test/webdriver
parent9e784dabf6278e848f081c7c24137ef8cc03671b (diff)
downloadchromium_src-023ad6abe4b833b9478992176b13b5a073895cdc.zip
chromium_src-023ad6abe4b833b9478992176b13b5a073895cdc.tar.gz
chromium_src-023ad6abe4b833b9478992176b13b5a073895cdc.tar.bz2
Replace FilePath with base::FilePath.
This is im preparation for removing the 'using" in file_path.h Review URL: https://codereview.chromium.org/12286020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@183021 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/webdriver')
-rw-r--r--chrome/test/webdriver/commands/chrome_commands.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/webdriver/commands/chrome_commands.cc b/chrome/test/webdriver/commands/chrome_commands.cc
index 87b7542..1b470aa 100644
--- a/chrome/test/webdriver/commands/chrome_commands.cc
+++ b/chrome/test/webdriver/commands/chrome_commands.cc
@@ -74,7 +74,7 @@ void ExtensionsCommand::ExecuteGet(Response* const response) {
}
void ExtensionsCommand::ExecutePost(Response* const response) {
- FilePath::StringType path_string;
+ base::FilePath::StringType path_string;
if (!GetStringParameter("path", &path_string)) {
response->SetError(new Error(kBadRequest, "'path' missing or invalid"));
return;
@@ -82,7 +82,7 @@ void ExtensionsCommand::ExecutePost(Response* const response) {
std::string extension_id;
Error* error = session_->InstallExtension(
- FilePath(path_string), &extension_id);
+ base::FilePath(path_string), &extension_id);
if (error) {
response->SetError(error);
return;