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

Unified Diff: chrome/browser/mock_browsing_data_local_storage_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
« no previous file with comments | « chrome/browser/mock_browsing_data_database_helper.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/mock_browsing_data_local_storage_helper.cc
diff --git a/chrome/browser/mock_browsing_data_local_storage_helper.cc b/chrome/browser/mock_browsing_data_local_storage_helper.cc
index bb6c0cec143f8786a2e92ad638b5d51dcd8f4eb3..0b80d375f84be47e6bafe405eafc26d6e8327243 100644
--- a/chrome/browser/mock_browsing_data_local_storage_helper.cc
+++ b/chrome/browser/mock_browsing_data_local_storage_helper.cc
@@ -35,12 +35,12 @@ void MockBrowsingDataLocalStorageHelper::DeleteLocalStorageFile(
void MockBrowsingDataLocalStorageHelper::AddLocalStorageSamples() {
response_.push_back(
BrowsingDataLocalStorageHelper::LocalStorageInfo(
- "http", "host1", 1, "db1", "origin1",
+ "http", "host1", 1, "db1", "http://host1:1/",
FilePath(FILE_PATH_LITERAL("file1")), 1, base::Time()));
files_[FILE_PATH_LITERAL("file1")] = true;
response_.push_back(
BrowsingDataLocalStorageHelper::LocalStorageInfo(
- "http", "host2", 2, "db2", "origin2",
+ "http", "host2", 2, "db2", "http://host2:2/",
FilePath(FILE_PATH_LITERAL("file2")), 2, base::Time()));
files_[FILE_PATH_LITERAL("file2")] = true;
}
« no previous file with comments | « chrome/browser/mock_browsing_data_database_helper.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698