summaryrefslogtreecommitdiffstats
path: root/chrome/test/chromedriver/chrome_launcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/chromedriver/chrome_launcher.cc')
-rw-r--r--chrome/test/chromedriver/chrome_launcher.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/chromedriver/chrome_launcher.cc b/chrome/test/chromedriver/chrome_launcher.cc
index f7fb437..f686261 100644
--- a/chrome/test/chromedriver/chrome_launcher.cc
+++ b/chrome/test/chromedriver/chrome_launcher.cc
@@ -76,7 +76,7 @@ Status PrepareCommandLine(int port,
if (!FindChrome(&program))
return Status(kUnknownError, "cannot find Chrome binary");
command.SetProgram(program);
- } else if (!file_util::PathExists(program)) {
+ } else if (!base::PathExists(program)) {
return Status(kUnknownError,
base::StringPrintf("no chrome binary at %" PRFilePath,
program.value().c_str()));