Index: net/disk_cache/simple/simple_util.h |
diff --git a/net/disk_cache/simple/simple_util.h b/net/disk_cache/simple/simple_util.h |
index b6ca85bb23be044c63296202e408ee183449e2de..904b76894500a7b91628c42fa20695dd0f1e906a 100644 |
--- a/net/disk_cache/simple/simple_util.h |
+++ b/net/disk_cache/simple/simple_util.h |
@@ -53,13 +53,13 @@ std::string GetSparseFilenameFromEntryHash(uint64 entry_hash); |
// Given the size of a file holding a stream in the simple backend and the key |
// to an entry, returns the number of bytes in the stream. |
-NET_EXPORT_PRIVATE int32 GetDataSizeFromKeyAndFileSize(const std::string& key, |
- int64 file_size); |
+NET_EXPORT_PRIVATE int32 |
+ GetDataSizeFromKeyAndFileSize(const std::string& key, int64 file_size); |
// Given the size of a stream in the simple backend and the key to an entry, |
// returns the number of bytes in the file. |
-NET_EXPORT_PRIVATE int64 GetFileSizeFromKeyAndDataSize(const std::string& key, |
- int32 data_size); |
+NET_EXPORT_PRIVATE int64 |
+ GetFileSizeFromKeyAndDataSize(const std::string& key, int32 data_size); |
// Given the stream index, returns the number of the file the stream is stored |
// in. |