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

Side by Side Diff: net/disk_cache/v3/disk_format_v3.cc

Issue 15203004: Disk cache: Reference CL for the implementation of file format version 3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 6 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/disk_cache/v3/disk_format_v3.h ('k') | net/disk_cache/v3/entry_impl_v3.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "net/disk_cache/v3/disk_format_v3.h"
6
7 #include "net/disk_cache/addr.h"
8
9 namespace disk_cache {
10
11 IndexHeaderV3::IndexHeaderV3() {
12 memset(this, 0, sizeof(*this));
13 magic = kIndexMagic;
14 version = kCurrentVersion;
15 max_block_file = kFirstAdditionalBlockFileV3;
16 }
17
18 EntryRecord::EntryRecord() {
19 memset(this, 0, sizeof(*this));
20 }
21
22 ShortEntryRecord::ShortEntryRecord() {
23 memset(this, 0, sizeof(*this));
24 }
25
26 } // namespace disk_cache
OLDNEW
« no previous file with comments | « net/disk_cache/v3/disk_format_v3.h ('k') | net/disk_cache/v3/entry_impl_v3.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698