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

Unified Diff: chrome/browser/mock_browsing_data_database_helper.cc

Issue 3048002: Store creating url in origin nodes and use it for content settings. (Closed)
Patch Set: compilefix Created 10 years, 5 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: chrome/browser/mock_browsing_data_database_helper.cc
diff --git a/chrome/browser/mock_browsing_data_database_helper.cc b/chrome/browser/mock_browsing_data_database_helper.cc
index 54e33f4339ed849c7032ffb40e5c372847e13beb..c62445ee005110fe734a0e9258ee512b5b6a3c0f 100644
--- a/chrome/browser/mock_browsing_data_database_helper.cc
+++ b/chrome/browser/mock_browsing_data_database_helper.cc
@@ -36,10 +36,12 @@ void MockBrowsingDataDatabaseHelper::DeleteDatabase(
void MockBrowsingDataDatabaseHelper::AddDatabaseSamples() {
response_.push_back(BrowsingDataDatabaseHelper::DatabaseInfo(
- "gdbhost1", "db1", "http_gdbhost1_1", "description 1", 1, base::Time()));
+ "gdbhost1", "db1", "http_gdbhost1_1", "description 1",
+ "http://gdbhost1:1/", 1, base::Time()));
databases_["http_gdbhost1_1:db1"] = true;
response_.push_back(BrowsingDataDatabaseHelper::DatabaseInfo(
- "gdbhost2", "db2", "http_gdbhost2_2", "description 2", 2, base::Time()));
+ "gdbhost2", "db2", "http_gdbhost2_2", "description 2",
+ "http://gdbhost2:2/", 2, base::Time()));
databases_["http_gdbhost2_2:db2"] = true;
}
« no previous file with comments | « chrome/browser/gtk/options/cookies_view_unittest.cc ('k') | chrome/browser/mock_browsing_data_local_storage_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698