| 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();
|
|
|