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

Unified Diff: net/disk_cache/flash/flash_cache_test_base.h

Issue 182093002: Remove the flash specific disk cache backend. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « no previous file | net/disk_cache/flash/flash_cache_test_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/flash/flash_cache_test_base.h
diff --git a/net/disk_cache/flash/flash_cache_test_base.h b/net/disk_cache/flash/flash_cache_test_base.h
deleted file mode 100644
index eb08227617128ee42dff9cd65a0a04f87f13e3f3..0000000000000000000000000000000000000000
--- a/net/disk_cache/flash/flash_cache_test_base.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef NET_DISK_CACHE_DISK_CACHE_FLASH_TEST_BASE_H_
-#define NET_DISK_CACHE_DISK_CACHE_FLASH_TEST_BASE_H_
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "base/files/scoped_temp_dir.h"
-#include "base/memory/scoped_ptr.h"
-#include "net/disk_cache/flash/format.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace {
-
-const int32 kNumTestSegments = 10;
-const int32 kStorageSize = kNumTestSegments * disk_cache::kFlashSegmentSize;
-
-} // namespace
-
-namespace disk_cache {
-
-class LogStore;
-
-} // namespace disk_cache
-
-class FlashCacheTest : public testing::Test {
- protected:
- FlashCacheTest();
- virtual ~FlashCacheTest();
-
- virtual void SetUp() OVERRIDE;
- virtual void TearDown() OVERRIDE;
-
- base::ScopedTempDir temp_dir_;
- base::FilePath path_;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(FlashCacheTest);
-};
-
-#endif // NET_DISK_CACHE_DISK_CACHE_FLASH_TEST_BASE_H_
« no previous file with comments | « no previous file | net/disk_cache/flash/flash_cache_test_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698