Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Unified Diff: net/tools/dump_cache/dump_files.h

Issue 17507006: Disk cache v3 ref2 Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Incl IndexTable cl Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/tools/dump_cache/dump_cache.cc ('k') | net/tools/dump_cache/dump_files.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/dump_cache/dump_files.h
===================================================================
--- net/tools/dump_cache/dump_files.h (revision 232523)
+++ net/tools/dump_cache/dump_files.h (working copy)
@@ -14,10 +14,16 @@
// Returns the major version of the specified cache.
int GetMajorVersion(const base::FilePath& input_path);
-// Dumps all entries from the cache.
-int DumpContents(const base::FilePath& input_path);
+// Dumps all entries from the cache, for version 2.
+int DumpContentsV2(const base::FilePath& input_path);
+// Dumps all entries from the cache, for version 3.
+int DumpContentsV3(const base::FilePath& input_path);
+
// Dumps the headers of all files.
int DumpHeaders(const base::FilePath& input_path);
+// Dumps extra fields from the V3 index header.
+void DumpIndexHeaderPart2(void* raw_header);
+
#endif // NET_TOOLS_DUMP_CACHE_DUMP_FILES_H_
« no previous file with comments | « net/tools/dump_cache/dump_cache.cc ('k') | net/tools/dump_cache/dump_files.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698