// Copyright 2013 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/mapped_file.h" #include <algorithm> #include <memory> namespace disk_cache { // Note: Most of this class is implemented in platform-specific files. bool MappedFile::Load(const FileBlock* block) { … } bool MappedFile::Store(const FileBlock* block) { … } bool MappedFile::Preload() { … } } // namespace disk_cache