diff options
Diffstat (limited to 'content/shell/shell_browser_main.cc')
-rw-r--r-- | content/shell/shell_browser_main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/shell/shell_browser_main.cc b/content/shell/shell_browser_main.cc index 44f09f9..a6cee64 100644 --- a/content/shell/shell_browser_main.cc +++ b/content/shell/shell_browser_main.cc @@ -73,7 +73,7 @@ GURL GetURLForLayoutTest(const std::string& test_name, #else base::FilePath local_file(path_or_url); #endif - if (!file_util::PathExists(local_file)) { + if (!base::PathExists(local_file)) { local_file = content::GetWebKitRootDirFilePath() .Append(FILE_PATH_LITERAL("LayoutTests")).Append(local_file); } |