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

Unified Diff: webkit/browser/quota/quota_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/quota/quota_database.cc
diff --git a/webkit/browser/quota/quota_database.cc b/webkit/browser/quota/quota_database.cc
index 2a6359877305412c80f9f37979d344b2db5e9498..759540f6e47be0ebfb0b5ee0bc887245b708e1f3 100644
--- a/webkit/browser/quota/quota_database.cc
+++ b/webkit/browser/quota/quota_database.cc
@@ -440,7 +440,7 @@ bool QuotaDatabase::LazyOpen(bool create_if_needed) {
bool in_memory_only = db_file_path_.empty();
if (!create_if_needed &&
- (in_memory_only || !file_util::PathExists(db_file_path_))) {
+ (in_memory_only || !base::PathExists(db_file_path_))) {
return false;
}
@@ -552,7 +552,7 @@ bool QuotaDatabase::CreateSchema(
bool QuotaDatabase::ResetSchema() {
DCHECK(!db_file_path_.empty());
- DCHECK(file_util::PathExists(db_file_path_));
+ DCHECK(base::PathExists(db_file_path_));
VLOG(1) << "Deleting existing quota data and starting over.";
db_.reset();
« no previous file with comments | « webkit/browser/fileapi/transient_file_util_unittest.cc ('k') | webkit/browser/quota/quota_database_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698