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

Unified Diff: net/disk_cache/simple/simple_index.cc

Issue 13813015: Separate Simple Backend creation from initialization. (Closed) Base URL: http://git.chromium.org/chromium/src.git@trace-2
Patch Set: updated the simple backend initialization according to the new interface in tests Created 7 years, 8 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
Index: net/disk_cache/simple/simple_index.cc
diff --git a/net/disk_cache/simple/simple_index.cc b/net/disk_cache/simple/simple_index.cc
index fb264c510b9b7314dd5b13792df971880e45f8d8..60ada0d8c0a62dd5d3ad1ed948916284496d9a62 100644
--- a/net/disk_cache/simple/simple_index.cc
+++ b/net/disk_cache/simple/simple_index.cc
@@ -46,7 +46,7 @@ SimpleIndex::SimpleIndex(
const base::FilePath& path)
: path_(path),
cache_thread_(cache_thread) {
- index_filename_ = path_.AppendASCII("simple-index");
+ index_filename_ = path_.AppendASCII("index");
}
bool SimpleIndex::Initialize() {

Powered by Google App Engine
This is Rietveld 408576698