summaryrefslogtreecommitdiffstats
path: root/net/disk_cache/flash/storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/disk_cache/flash/storage.h')
-rw-r--r--net/disk_cache/flash/storage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/disk_cache/flash/storage.h b/net/disk_cache/flash/storage.h
index 756014f..38c4a4e 100644
--- a/net/disk_cache/flash/storage.h
+++ b/net/disk_cache/flash/storage.h
@@ -13,7 +13,7 @@ namespace disk_cache {
class NET_EXPORT_PRIVATE Storage {
public:
- Storage(const FilePath& path, int32 size);
+ Storage(const base::FilePath& path, int32 size);
bool Init();
~Storage();
@@ -23,7 +23,7 @@ class NET_EXPORT_PRIVATE Storage {
bool Write(const void* buffer, int32 size, int32 offset);
private:
- FilePath path_;
+ base::FilePath path_;
int32 size_;
base::PlatformFile file_;