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

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

Issue 11532011: Renamed classes for consistency. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: test 2. Created 8 years 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/flash/flash_cache_test_base.h ('k') | net/disk_cache/flash/format.h » ('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.cc
diff --git a/net/disk_cache/flash/flash_cache_test_base.cc b/net/disk_cache/flash/flash_cache_test_base.cc
index 0123e16d9ba2fdbaca7bd5a0ca38453e99fb4d56..368eb91a1cb0db7d0abefd67143995e2f6f3dd21 100644
--- a/net/disk_cache/flash/flash_cache_test_base.cc
+++ b/net/disk_cache/flash/flash_cache_test_base.cc
@@ -8,7 +8,7 @@
#include "base/files/scoped_temp_dir.h"
#include "base/time.h"
#include "net/disk_cache/flash/format.h"
-#include "net/disk_cache/flash/log_structured_store.h"
+#include "net/disk_cache/flash/log_store.h"
#include "net/disk_cache/flash/storage.h"
namespace {
@@ -34,13 +34,12 @@ void FlashCacheTest::SetUp() {
storage_.reset(new disk_cache::Storage(path, storage_size));
ASSERT_TRUE(storage_->Init());
- log_structured_store_.reset(
- new disk_cache::LogStructuredStore(storage_.get()));
- ASSERT_TRUE(log_structured_store_->Init());
+ log_store_.reset(new disk_cache::LogStore(storage_.get()));
+ ASSERT_TRUE(log_store_->Init());
}
void FlashCacheTest::TearDown() {
- ASSERT_TRUE(log_structured_store_->Close());
- log_structured_store_.reset();
+ ASSERT_TRUE(log_store_->Close());
+ log_store_.reset();
storage_.reset();
}
« no previous file with comments | « net/disk_cache/flash/flash_cache_test_base.h ('k') | net/disk_cache/flash/format.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698