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

Unified Diff: webkit/quota/quota_client.h

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/mock_storage_client.cc ('k') | webkit/quota/quota_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/quota/quota_client.h
diff --git a/webkit/quota/quota_client.h b/webkit/quota/quota_client.h
index 88a5ddfe2ff1f25c802cf66d4f9d2d4bea4d05f1..b866d91e32d9cc78bc4a6f01b09790afc48110b1 100644
--- a/webkit/quota/quota_client.h
+++ b/webkit/quota/quota_client.h
@@ -22,10 +22,10 @@ namespace quota {
// All the methods are assumed to be called on the IO thread in the browser.
class WEBKIT_STORAGE_EXPORT QuotaClient {
public:
- typedef base::Callback<void(int64)> GetUsageCallback; // NOLINT
- typedef base::Callback<void(const std::set<GURL>&, StorageType)>
+ typedef base::Callback<void(int64 usage)> GetUsageCallback;
+ typedef base::Callback<void(const std::set<GURL>& origins)>
GetOriginsCallback;
- typedef base::Callback<void(QuotaStatusCode)> DeletionCallback;
+ typedef base::Callback<void(QuotaStatusCode status)> DeletionCallback;
virtual ~QuotaClient() {}
« no previous file with comments | « webkit/quota/mock_storage_client.cc ('k') | webkit/quota/quota_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698