diff options
Diffstat (limited to 'webkit/appcache/appcache_database.cc')
-rw-r--r-- | webkit/appcache/appcache_database.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/appcache/appcache_database.cc b/webkit/appcache/appcache_database.cc index e8f4b0b..95b4309 100644 --- a/webkit/appcache/appcache_database.cc +++ b/webkit/appcache/appcache_database.cc @@ -177,7 +177,7 @@ AppCacheDatabase::NamespaceRecord::~NamespaceRecord() { } -AppCacheDatabase::AppCacheDatabase(const FilePath& path) +AppCacheDatabase::AppCacheDatabase(const base::FilePath& path) : db_file_path_(path), is_disabled_(false), is_recreating_(false) { } @@ -1103,7 +1103,7 @@ bool AppCacheDatabase::DeleteExistingAndCreateNewDatabase() { ResetConnectionAndTables(); // This also deletes the disk cache data. - FilePath directory = db_file_path_.DirName(); + base::FilePath directory = db_file_path_.DirName(); if (!file_util::Delete(directory, true) || !file_util::CreateDirectory(directory)) { return false; |