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

Unified Diff: webkit/appcache/appcache_disk_cache.h

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_unittest.cc ('k') | webkit/appcache/appcache_disk_cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_disk_cache.h
diff --git a/webkit/appcache/appcache_disk_cache.h b/webkit/appcache/appcache_disk_cache.h
index 529db976196cf932bf7f8c6dd76d3359c827e1af..aafc84689e88cd376dc5b6b71262cebf17425ae0 100644
--- a/webkit/appcache/appcache_disk_cache.h
+++ b/webkit/appcache/appcache_disk_cache.h
@@ -24,7 +24,7 @@ class WEBKIT_STORAGE_EXPORT AppCacheDiskCache
virtual ~AppCacheDiskCache();
// Initializes the object to use disk backed storage.
- int InitWithDiskBackend(const FilePath& disk_cache_directory,
+ int InitWithDiskBackend(const base::FilePath& disk_cache_directory,
int disk_cache_size, bool force,
base::MessageLoopProxy* cache_thread,
const net::CompletionCallback& callback);
@@ -80,7 +80,7 @@ class WEBKIT_STORAGE_EXPORT AppCacheDiskCache
return create_backend_callback_.get() != NULL;
}
disk_cache::Backend* disk_cache() { return disk_cache_.get(); }
- int Init(net::CacheType cache_type, const FilePath& directory,
+ int Init(net::CacheType cache_type, const base::FilePath& directory,
int cache_size, bool force, base::MessageLoopProxy* cache_thread,
const net::CompletionCallback& callback);
void OnCreateBackendComplete(int rv);
« no previous file with comments | « webkit/appcache/appcache_database_unittest.cc ('k') | webkit/appcache/appcache_disk_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698