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

Unified Diff: webkit/quota/mock_storage_client.cc

Issue 7533013: Quota: Add quota::StorageType to the GetOriginsCallback definition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Missed IndexedDbQuotaClient. Created 9 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: webkit/quota/mock_storage_client.cc
diff --git a/webkit/quota/mock_storage_client.cc b/webkit/quota/mock_storage_client.cc
index 0ba446807ad11d219e227c9f122307ffe34451ec..897f100b86b325f5da3ccfd4f675f7987e49ab84 100644
--- a/webkit/quota/mock_storage_client.cc
+++ b/webkit/quota/mock_storage_client.cc
@@ -163,7 +163,7 @@ void MockStorageClient::RunGetOriginsForType(
if (type == iter->first.second)
origins.insert(iter->first.first);
}
- callback->Run(origins);
+ callback->Run(origins, type);
}
void MockStorageClient::RunGetOriginsForHost(
@@ -178,7 +178,7 @@ void MockStorageClient::RunGetOriginsForHost(
if (type == iter->first.second && host == host_or_spec)
origins.insert(iter->first.first);
}
- callback->Run(origins);
+ callback->Run(origins, type);
}
void MockStorageClient::RunDeleteOriginData(

Powered by Google App Engine
This is Rietveld 408576698