OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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.h" | 12 #include "base/callback.h" |
13 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
14 #include "webkit/quota/quota_types.h" | 14 #include "webkit/quota/quota_types.h" |
| 15 #include "webkit/storage/webkit_storage_export.h" |
15 | 16 |
16 namespace quota { | 17 namespace quota { |
17 | 18 |
18 // An abstract interface for quota manager clients. | 19 // An abstract interface for quota manager clients. |
19 // Each storage API must provide an implementation of this interface and | 20 // Each storage API must provide an implementation of this interface and |
20 // register it to the quota manager. | 21 // register it to the quota manager. |
21 // 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. |
22 class QuotaClient { | 23 class WEBKIT_STORAGE_EXPORT QuotaClient { |
23 public: | 24 public: |
24 typedef base::Callback<void(int64)> GetUsageCallback; // NOLINT | 25 typedef base::Callback<void(int64)> GetUsageCallback; // NOLINT |
25 typedef base::Callback<void(const std::set<GURL>&, StorageType)> | 26 typedef base::Callback<void(const std::set<GURL>&, StorageType)> |
26 GetOriginsCallback; | 27 GetOriginsCallback; |
27 typedef base::Callback<void(QuotaStatusCode)> DeletionCallback; | 28 typedef base::Callback<void(QuotaStatusCode)> DeletionCallback; |
28 | 29 |
29 virtual ~QuotaClient() {} | 30 virtual ~QuotaClient() {} |
30 | 31 |
31 enum ID { | 32 enum ID { |
32 kUnknown = 1 << 0, | 33 kUnknown = 1 << 0, |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 StorageType type, | 70 StorageType type, |
70 const DeletionCallback& callback) = 0; | 71 const DeletionCallback& callback) = 0; |
71 }; | 72 }; |
72 | 73 |
73 // TODO(dmikurube): Replace it to std::vector for efficiency. | 74 // TODO(dmikurube): Replace it to std::vector for efficiency. |
74 typedef std::list<QuotaClient*> QuotaClientList; | 75 typedef std::list<QuotaClient*> QuotaClientList; |
75 | 76 |
76 } // namespace quota | 77 } // namespace quota |
77 | 78 |
78 #endif // WEBKIT_QUOTA_QUOTA_CLIENT_H_ | 79 #endif // WEBKIT_QUOTA_QUOTA_CLIENT_H_ |
OLD | NEW |