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

Unified Diff: webkit/browser/fileapi/sandbox_origin_database.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
Index: webkit/browser/fileapi/sandbox_origin_database.cc
diff --git a/webkit/browser/fileapi/sandbox_origin_database.cc b/webkit/browser/fileapi/sandbox_origin_database.cc
index 0d7d3ef3af966d2f1dd05c3853721d5067bc46aa..f85ddbe4c37f7ae3c2f0f05c206819089351ceba 100644
--- a/webkit/browser/fileapi/sandbox_origin_database.cc
+++ b/webkit/browser/fileapi/sandbox_origin_database.cc
@@ -71,7 +71,7 @@ bool SandboxOriginDatabase::Init(InitOption init_option,
return true;
base::FilePath db_path = GetDatabasePath();
- if (init_option == FAIL_IF_NONEXISTENT && !file_util::PathExists(db_path))
+ if (init_option == FAIL_IF_NONEXISTENT && !base::PathExists(db_path))
return false;
std::string path = FilePathToString(db_path);

Powered by Google App Engine
This is Rietveld 408576698