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_CLIENT_H_ | 5 #ifndef WEBKIT_QUOTA_QUOTA_CLIENT_H_ |
6 #define WEBKIT_QUOTA_QUOTA_CLIENT_H_ | 6 #define WEBKIT_QUOTA_QUOTA_CLIENT_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/callback_old.h" | 12 #include "base/callback_old.h" |
13 #include "base/time.h" | 13 #include "base/time.h" |
14 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
15 #include "webkit/quota/quota_types.h" | 15 #include "webkit/quota/quota_types.h" |
16 | 16 |
17 namespace quota { | 17 namespace quota { |
18 | 18 |
19 // An abstract interface for quota manager clients. | 19 // An abstract interface for quota manager clients. |
20 // Each storage API must provide an implementation of this interface and | 20 // Each storage API must provide an implementation of this interface and |
21 // register it to the quota manager. | 21 // register it to the quota manager. |
22 // All the methods are assumed to be called on the IO thread in the browser. | 22 // All the methods are assumed to be called on the IO thread in the browser. |
23 class QuotaClient { | 23 class QuotaClient { |
24 public: | 24 public: |
25 typedef Callback1<int64>::Type GetUsageCallback; | 25 typedef Callback1<int64>::Type GetUsageCallback; |
26 typedef Callback1<const std::set<GURL>&>::Type GetOriginsCallback; | 26 typedef Callback2<const std::set<GURL>&, StorageType>::Type |
| 27 GetOriginsCallback; |
27 typedef Callback1<QuotaStatusCode>::Type DeletionCallback; | 28 typedef Callback1<QuotaStatusCode>::Type DeletionCallback; |
28 | 29 |
29 virtual ~QuotaClient() {} | 30 virtual ~QuotaClient() {} |
30 | 31 |
31 enum ID { | 32 enum ID { |
32 kUnknown, | 33 kUnknown, |
33 kFileSystem, | 34 kFileSystem, |
34 kDatabase, | 35 kDatabase, |
35 kAppcache, | 36 kAppcache, |
36 kIndexedDatabase, | 37 kIndexedDatabase, |
(...skipping 28 matching lines...) Expand all Loading... |
65 StorageType type, | 66 StorageType type, |
66 DeletionCallback* callback) = 0; | 67 DeletionCallback* callback) = 0; |
67 }; | 68 }; |
68 | 69 |
69 // TODO(dmikurube): Replace it to std::vector for efficiency. | 70 // TODO(dmikurube): Replace it to std::vector for efficiency. |
70 typedef std::list<QuotaClient*> QuotaClientList; | 71 typedef std::list<QuotaClient*> QuotaClientList; |
71 | 72 |
72 } // namespace quota | 73 } // namespace quota |
73 | 74 |
74 #endif // WEBKIT_QUOTA_QUOTA_CLIENT_H_ | 75 #endif // WEBKIT_QUOTA_QUOTA_CLIENT_H_ |
OLD | NEW |