// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/disk_cache/blockfile/addr.h" #include "base/check.h" namespace disk_cache { int Addr::start_block() const { … } int Addr::num_blocks() const { … } bool Addr::SetFileNumber(int file_number) { … } bool Addr::SanityCheck() const { … } bool Addr::SanityCheckForEntry() const { … } bool Addr::SanityCheckForRankings() const { … } } // namespace disk_cache