Index: net/disk_cache/simple/simple_index_file.h |
diff --git a/net/disk_cache/simple/simple_index_file.h b/net/disk_cache/simple/simple_index_file.h |
index 756294121c911d7228f7bb54bc7601e21f139f8e..633198711ae0bab4b949e84a65e9907418fedb32 100644 |
--- a/net/disk_cache/simple/simple_index_file.h |
+++ b/net/disk_cache/simple/simple_index_file.h |
@@ -95,7 +95,7 @@ class NET_EXPORT_PRIVATE SimpleIndexFile { |
friend class WrappedSimpleIndexFile; |
// Used for cache directory traversal. |
- typedef base::Callback<void (const base::FilePath&)> EntryFileCallback; |
+ typedef base::Callback<void(const base::FilePath&)> EntryFileCallback; |
// When loading the entries from disk, add this many extra hash buckets to |
// prevent reallocation on the IO thread when merging in new live entries. |
@@ -129,7 +129,8 @@ class NET_EXPORT_PRIVATE SimpleIndexFile { |
// Given the contents of an index file |data| of length |data_len|, returns |
// the corresponding EntrySet. Returns NULL on error. |
- static void Deserialize(const char* data, int data_len, |
+ static void Deserialize(const char* data, |
+ int data_len, |
base::Time* out_cache_last_modified, |
SimpleIndexLoadResult* out_result); |
@@ -182,7 +183,6 @@ class NET_EXPORT_PRIVATE SimpleIndexFile { |
DISALLOW_COPY_AND_ASSIGN(SimpleIndexFile); |
}; |
- |
} // namespace disk_cache |
#endif // NET_DISK_CACHE_SIMPLE_SIMPLE_INDEX_FILE_H_ |