Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2313)

Unified Diff: content/shell/shell_browser_main.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/shell/shell_browser_context.cc ('k') | content/shell/shell_download_manager_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_browser_main.cc
diff --git a/content/shell/shell_browser_main.cc b/content/shell/shell_browser_main.cc
index 44f09f97bd86e2e86a675416f429dda3e72e023c..a6cee64ccc2254a2e2b4d3764f6a4c0803e936ab 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);
}
« no previous file with comments | « content/shell/shell_browser_context.cc ('k') | content/shell/shell_download_manager_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698