1 // Copyright 2010 The Chromium Authors 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/blockfile/disk_format.h" 6 7 namespace disk_cache { 8 9 static_assert(sizeof(IndexHeader) == 368); 10 IndexHeader()11IndexHeader::IndexHeader() { 12 memset(this, 0, sizeof(*this)); 13 magic = kIndexMagic; 14 version = kCurrentVersion; 15 } 16 17 } // namespace disk_cache 18