| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |