summaryrefslogtreecommitdiffstats
path: root/content/browser/appcache/chrome_appcache_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/appcache/chrome_appcache_service.h')
-rw-r--r--content/browser/appcache/chrome_appcache_service.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/content/browser/appcache/chrome_appcache_service.h b/content/browser/appcache/chrome_appcache_service.h
index 24a509c..e11f3f9 100644
--- a/content/browser/appcache/chrome_appcache_service.h
+++ b/content/browser/appcache/chrome_appcache_service.h
@@ -13,7 +13,9 @@
#include "webkit/appcache/appcache_service.h"
#include "webkit/quota/special_storage_policy.h"
+namespace base {
class FilePath;
+}
namespace net {
class URLRequestContextGetter;
@@ -44,7 +46,7 @@ class CONTENT_EXPORT ChromeAppCacheService
explicit ChromeAppCacheService(quota::QuotaManagerProxy* proxy);
void InitializeOnIOThread(
- const FilePath& cache_path, // may be empty to use in-memory structures
+ const base::FilePath& cache_path, // May be empty to use in-memory structs.
ResourceContext* resource_context,
net::URLRequestContextGetter* request_context_getter,
scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy);
@@ -67,7 +69,7 @@ class CONTENT_EXPORT ChromeAppCacheService
void DeleteOnCorrectThread() const;
ResourceContext* resource_context_;
- FilePath cache_path_;
+ base::FilePath cache_path_;
DISALLOW_COPY_AND_ASSIGN(ChromeAppCacheService);
};