| Index: chrome/test/chromedriver/chrome_launcher.cc
|
| diff --git a/chrome/test/chromedriver/chrome_launcher.cc b/chrome/test/chromedriver/chrome_launcher.cc
|
| index f7fb4375ffdeb06e6f00e94c96d99d2b603d2f95..f6862610405a6312c66879dd492f0728ea72583f 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()));
|
|
|