Chromium Code Reviews| 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 14 matching lines...) Expand all Loading... | |
| 51 | 52 |
| 52 // Called by the QuotaManager. | 53 // Called by the QuotaManager. |
| 53 // Returns a list of origins that has data in the |type| storage. | 54 // Returns a list of origins that has data in the |type| storage. |
| 54 virtual void GetOriginsForType(StorageType type, | 55 virtual void GetOriginsForType(StorageType type, |
| 55 GetOriginsCallback* callback) = 0; | 56 GetOriginsCallback* callback) = 0; |
| 56 | 57 |
| 57 // Called by the QuotaManager. | 58 // Called by the QuotaManager. |
| 58 // Returns a list of origins that match the |host|. | 59 // Returns a list of origins that match the |host|. |
| 59 virtual void GetOriginsForHost(StorageType type, | 60 virtual void GetOriginsForHost(StorageType type, |
| 60 const std::string& host, | 61 const std::string& host, |
| 61 GetOriginsCallback* callback) = 0; | 62 GetOriginsCallback* callback) = 0; |
|
kinuko
2011/07/29 11:12:37
For this one it might look a bit strange to have o
kinuko
2011/07/29 12:13:16
As we chatted offline, on the second thought it mi
| |
| 62 | 63 |
| 63 // Called by the QuotaManager. | 64 // Called by the QuotaManager. |
| 64 virtual void DeleteOriginData(const GURL& origin, | 65 virtual void DeleteOriginData(const GURL& origin, |
| 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 |