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

Unified Diff: chrome/browser/mock_browsing_data_indexed_db_helper.cc

Issue 4682002: Remove "name" field from indexed databases. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month 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: chrome/browser/mock_browsing_data_indexed_db_helper.cc
diff --git a/chrome/browser/mock_browsing_data_indexed_db_helper.cc b/chrome/browser/mock_browsing_data_indexed_db_helper.cc
index ed83fd3c86a691f966f398613c490e8123d03906..06e4039fedf4c9be273a6fb2661d5f8df5da0ea3 100644
--- a/chrome/browser/mock_browsing_data_indexed_db_helper.cc
+++ b/chrome/browser/mock_browsing_data_indexed_db_helper.cc
@@ -34,12 +34,12 @@ void MockBrowsingDataIndexedDBHelper::DeleteIndexedDBFile(
void MockBrowsingDataIndexedDBHelper::AddIndexedDBSamples() {
response_.push_back(
BrowsingDataIndexedDBHelper::IndexedDBInfo(
- "http", "idbhost1", 1, "idb1", "http://idbhost1:1/", "name",
+ "http", "idbhost1", 1, "idb1", "http://idbhost1:1/",
FilePath(FILE_PATH_LITERAL("file1")), 1, base::Time()));
files_[FILE_PATH_LITERAL("file1")] = true;
response_.push_back(
BrowsingDataIndexedDBHelper::IndexedDBInfo(
- "http", "idbhost2", 2, "idb2", "http://idbhost2:2/", "name",
+ "http", "idbhost2", 2, "idb2", "http://idbhost2:2/",
FilePath(FILE_PATH_LITERAL("file2")), 2, base::Time()));
files_[FILE_PATH_LITERAL("file2")] = true;
}

Powered by Google App Engine
This is Rietveld 408576698