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

Unified Diff: webkit/quota/usage_tracker_unittest.cc

Issue 15925005: [Quota][Clean up] Drop non-informative StorageType parameter on GetOriginsForType callback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 7 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 | « webkit/quota/usage_tracker.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/quota/usage_tracker_unittest.cc
diff --git a/webkit/quota/usage_tracker_unittest.cc b/webkit/quota/usage_tracker_unittest.cc
index bfd423cc3be5ac3bcba09c63d9bdcb6c0a99825c..63161262ad8a3776d3b1e1ac95f247e5bcec31aa 100644
--- a/webkit/quota/usage_tracker_unittest.cc
+++ b/webkit/quota/usage_tracker_unittest.cc
@@ -63,7 +63,7 @@ class MockQuotaClient : public QuotaClient {
origins.insert(itr->first);
}
base::MessageLoop::current()->PostTask(FROM_HERE,
- base::Bind(callback, origins, type));
+ base::Bind(callback, origins));
}
virtual void GetOriginsForHost(StorageType type,
@@ -77,7 +77,7 @@ class MockQuotaClient : public QuotaClient {
origins.insert(itr->first);
}
base::MessageLoop::current()->PostTask(FROM_HERE,
- base::Bind(callback, origins, type));
+ base::Bind(callback, origins));
}
virtual void DeleteOriginData(const GURL& origin,
« no previous file with comments | « webkit/quota/usage_tracker.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698