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

Side by Side Diff: webkit/quota/quota_types.h

Issue 7533013: Quota: Add quota::StorageType to the GetOriginsCallback definition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebasing onto today's ToT. Created 9 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/quota/quota_manager_unittest.cc ('k') | webkit/quota/usage_tracker.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_QUOTA_QUOTA_TYPES_H_ 5 #ifndef WEBKIT_QUOTA_QUOTA_TYPES_H_
6 #define WEBKIT_QUOTA_QUOTA_TYPES_H_ 6 #define WEBKIT_QUOTA_QUOTA_TYPES_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 typedef Callback3<const std::string& /* host */, 45 typedef Callback3<const std::string& /* host */,
46 StorageType, 46 StorageType,
47 int64>::Type HostUsageCallback; 47 int64>::Type HostUsageCallback;
48 typedef Callback4<QuotaStatusCode, 48 typedef Callback4<QuotaStatusCode,
49 const std::string& /* host */, 49 const std::string& /* host */,
50 StorageType, 50 StorageType,
51 int64>::Type HostQuotaCallback; 51 int64>::Type HostQuotaCallback;
52 typedef Callback2<QuotaStatusCode, 52 typedef Callback2<QuotaStatusCode,
53 int64>::Type AvailableSpaceCallback; 53 int64>::Type AvailableSpaceCallback;
54 typedef Callback1<QuotaStatusCode>::Type StatusCallback; 54 typedef Callback1<QuotaStatusCode>::Type StatusCallback;
55 typedef Callback1<const std::set<GURL>&>::Type GetOriginsCallback; 55 typedef Callback2<const std::set<GURL>&, StorageType>::Type GetOriginsCallback;
56 56
57 // Simple template wrapper for a callback queue. 57 // Simple template wrapper for a callback queue.
58 template <typename CallbackType> 58 template <typename CallbackType>
59 class CallbackQueueBase { 59 class CallbackQueueBase {
60 public: 60 public:
61 typedef typename std::deque<CallbackType> Queue; 61 typedef typename std::deque<CallbackType> Queue;
62 typedef typename Queue::iterator iterator; 62 typedef typename Queue::iterator iterator;
63 63
64 virtual ~CallbackQueueBase() { 64 virtual ~CallbackQueueBase() {
65 STLDeleteContainerPointers(callbacks_.begin(), callbacks_.end()); 65 STLDeleteContainerPointers(callbacks_.begin(), callbacks_.end());
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 const std::string&, 272 const std::string&,
273 StorageType, int64> HostUsageCallbackMap; 273 StorageType, int64> HostUsageCallbackMap;
274 typedef CallbackQueueMap4<HostQuotaCallback*, std::string, 274 typedef CallbackQueueMap4<HostQuotaCallback*, std::string,
275 QuotaStatusCode, 275 QuotaStatusCode,
276 const std::string&, 276 const std::string&,
277 StorageType, int64> HostQuotaCallbackMap; 277 StorageType, int64> HostQuotaCallbackMap;
278 278
279 } // namespace quota 279 } // namespace quota
280 280
281 #endif // WEBKIT_QUOTA_QUOTA_TYPES_H_ 281 #endif // WEBKIT_QUOTA_QUOTA_TYPES_H_
OLDNEW
« no previous file with comments | « webkit/quota/quota_manager_unittest.cc ('k') | webkit/quota/usage_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698