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

Unified Diff: net/disk_cache/mapped_file.cc

Issue 121643003: Reorganize net/disk_cache into backend specific directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix ios breakage Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/disk_cache/mapped_file.h ('k') | net/disk_cache/mapped_file_avoid_mmap_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/mapped_file.cc
diff --git a/net/disk_cache/mapped_file.cc b/net/disk_cache/mapped_file.cc
deleted file mode 100644
index dd745ac5268439b1a91c23cd6e9a64d36e1c5042..0000000000000000000000000000000000000000
--- a/net/disk_cache/mapped_file.cc
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "net/disk_cache/mapped_file.h"
-
-namespace disk_cache {
-
-// Note: Most of this class is implemented in platform-specific files.
-
-bool MappedFile::Load(const FileBlock* block) {
- size_t offset = block->offset() + view_size_;
- return Read(block->buffer(), block->size(), offset);
-}
-
-bool MappedFile::Store(const FileBlock* block) {
- size_t offset = block->offset() + view_size_;
- return Write(block->buffer(), block->size(), offset);
-}
-
-bool MappedFile::Load(const FileBlock* block,
- FileIOCallback* callback,
- bool* completed) {
- size_t offset = block->offset() + view_size_;
- return Read(block->buffer(), block->size(), offset, callback, completed);
-}
-
-bool MappedFile::Store(const FileBlock* block,
- FileIOCallback* callback,
- bool* completed) {
- size_t offset = block->offset() + view_size_;
- return Write(block->buffer(), block->size(), offset, callback, completed);
-}
-
-} // namespace disk_cache
« no previous file with comments | « net/disk_cache/mapped_file.h ('k') | net/disk_cache/mapped_file_avoid_mmap_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698