| Index: webkit/browser/quota/mock_quota_manager.h
|
| diff --git a/webkit/browser/quota/mock_quota_manager.h b/webkit/browser/quota/mock_quota_manager.h
|
| index 0c93c11029bd539938fd90c58ff6be121ae9a668..1750e9400bbc1b3cb809d1e2a6c8325bb3a8bbee 100644
|
| --- a/webkit/browser/quota/mock_quota_manager.h
|
| +++ b/webkit/browser/quota/mock_quota_manager.h
|
| @@ -5,7 +5,9 @@
|
| #ifndef WEBKIT_BROWSER_QUOTA_MOCK_QUOTA_MANAGER_H_
|
| #define WEBKIT_BROWSER_QUOTA_MOCK_QUOTA_MANAGER_H_
|
|
|
| -#include <string>
|
| +#include <map>
|
| +#include <set>
|
| +#include <utility>
|
| #include <vector>
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| @@ -137,70 +139,6 @@ class MockQuotaManager : public QuotaManager {
|
| DISALLOW_COPY_AND_ASSIGN(MockQuotaManager);
|
| };
|
|
|
| -// MockQuotaManagerProxy.
|
| -class MockQuotaManagerProxy : public QuotaManagerProxy {
|
| - public:
|
| - // It is ok to give NULL to |quota_manager|.
|
| - MockQuotaManagerProxy(MockQuotaManager* quota_manager,
|
| - base::SingleThreadTaskRunner* task_runner);
|
| -
|
| - virtual void RegisterClient(QuotaClient* client) OVERRIDE;
|
| -
|
| - void SimulateQuotaManagerDestroyed();
|
| -
|
| - // We don't mock them.
|
| - virtual void NotifyOriginInUse(const GURL& origin) OVERRIDE {}
|
| - virtual void NotifyOriginNoLongerInUse(const GURL& origin) OVERRIDE {}
|
| - virtual void SetUsageCacheEnabled(QuotaClient::ID client_id,
|
| - const GURL& origin,
|
| - StorageType type,
|
| - bool enabled) OVERRIDE {}
|
| - virtual void GetUsageAndQuota(
|
| - base::SequencedTaskRunner* original_task_runner,
|
| - const GURL& origin,
|
| - StorageType type,
|
| - const QuotaManager::GetUsageAndQuotaCallback& callback) OVERRIDE {}
|
| -
|
| - // Validates the |client_id| and updates the internal access count
|
| - // which can be accessed via notify_storage_accessed_count().
|
| - // The also records the |origin| and |type| in last_notified_origin_ and
|
| - // last_notified_type_.
|
| - virtual void NotifyStorageAccessed(QuotaClient::ID client_id,
|
| - const GURL& origin,
|
| - StorageType type) OVERRIDE;
|
| -
|
| - // Records the |origin|, |type| and |delta| as last_notified_origin_,
|
| - // last_notified_type_ and last_notified_delta_ respecitvely.
|
| - // If non-null MockQuotaManager is given to the constructor this also
|
| - // updates the manager's internal usage information.
|
| - virtual void NotifyStorageModified(QuotaClient::ID client_id,
|
| - const GURL& origin,
|
| - StorageType type,
|
| - int64 delta) OVERRIDE;
|
| -
|
| - int notify_storage_accessed_count() const { return storage_accessed_count_; }
|
| - int notify_storage_modified_count() const { return storage_modified_count_; }
|
| - GURL last_notified_origin() const { return last_notified_origin_; }
|
| - StorageType last_notified_type() const { return last_notified_type_; }
|
| - int64 last_notified_delta() const { return last_notified_delta_; }
|
| -
|
| - protected:
|
| - virtual ~MockQuotaManagerProxy();
|
| -
|
| - private:
|
| - MockQuotaManager* mock_manager() const {
|
| - return static_cast<MockQuotaManager*>(quota_manager());
|
| - }
|
| -
|
| - int storage_accessed_count_;
|
| - int storage_modified_count_;
|
| - GURL last_notified_origin_;
|
| - StorageType last_notified_type_;
|
| - int64 last_notified_delta_;
|
| -
|
| - QuotaClient* registered_client_;
|
| -};
|
| -
|
| } // namespace quota
|
|
|
| #endif // WEBKIT_BROWSER_QUOTA_MOCK_QUOTA_MANAGER_H_
|
|
|