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

Unified Diff: webkit/appcache/appcache_database.cc

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | « webkit/appcache/appcache_database.h ('k') | webkit/appcache/appcache_database_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_database.cc
diff --git a/webkit/appcache/appcache_database.cc b/webkit/appcache/appcache_database.cc
index e8f4b0bb1e6073308d134b45d78508dfdcfec515..95b430979fb3ab868be9a04f88c35f8e70b98b1a 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;
« no previous file with comments | « webkit/appcache/appcache_database.h ('k') | webkit/appcache/appcache_database_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698