summaryrefslogtreecommitdiffstats
path: root/net/disk_cache/flash/storage.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/disk_cache/flash/storage.cc')
-rw-r--r--net/disk_cache/flash/storage.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/disk_cache/flash/storage.cc b/net/disk_cache/flash/storage.cc
index b6af0fe..c7136ef 100644
--- a/net/disk_cache/flash/storage.cc
+++ b/net/disk_cache/flash/storage.cc
@@ -13,7 +13,9 @@
namespace disk_cache {
-Storage::Storage(const FilePath& path, int32 size) : path_(path), size_(size) {
+Storage::Storage(const base::FilePath& path,
+ int32 size)
+ : path_(path), size_(size) {
COMPILE_ASSERT(kFlashPageSize % 2 == 0, invalid_page_size);
COMPILE_ASSERT(kFlashBlockSize % kFlashPageSize == 0, invalid_block_size);
DCHECK(size_ % kFlashBlockSize == 0);