| Index: storage/browser/database/database_quota_client.h
|
| diff --git a/webkit/browser/database/database_quota_client.h b/storage/browser/database/database_quota_client.h
|
| similarity index 84%
|
| rename from webkit/browser/database/database_quota_client.h
|
| rename to storage/browser/database/database_quota_client.h
|
| index 2c6d0aeda718882d0a1f4c9f7badc02a4a7cd071..5c8410b86bb8eeb7248ed077dc8ddd85334d7980 100644
|
| --- a/webkit/browser/database/database_quota_client.h
|
| +++ b/storage/browser/database/database_quota_client.h
|
| @@ -10,9 +10,9 @@
|
|
|
| #include "base/memory/ref_counted.h"
|
| #include "base/message_loop/message_loop_proxy.h"
|
| -#include "webkit/browser/quota/quota_client.h"
|
| -#include "webkit/browser/webkit_storage_browser_export.h"
|
| -#include "webkit/common/quota/quota_types.h"
|
| +#include "storage/browser/quota/quota_client.h"
|
| +#include "storage/common/storage_export.h"
|
| +#include "storage/common/quota/quota_types.h"
|
|
|
| namespace webkit_database {
|
|
|
| @@ -21,12 +21,10 @@ class DatabaseTracker;
|
| // A QuotaClient implementation to integrate WebSQLDatabases
|
| // with the quota management system. This interface is used
|
| // on the IO thread by the quota manager.
|
| -class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE DatabaseQuotaClient
|
| - : public quota::QuotaClient {
|
| +class STORAGE_EXPORT_PRIVATE DatabaseQuotaClient : public quota::QuotaClient {
|
| public:
|
| - DatabaseQuotaClient(
|
| - base::MessageLoopProxy* tracker_thread,
|
| - DatabaseTracker* tracker);
|
| + DatabaseQuotaClient(base::MessageLoopProxy* tracker_thread,
|
| + DatabaseTracker* tracker);
|
| virtual ~DatabaseQuotaClient();
|
|
|
| // QuotaClient method overrides
|
| @@ -44,6 +42,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE DatabaseQuotaClient
|
| quota::StorageType type,
|
| const DeletionCallback& callback) OVERRIDE;
|
| virtual bool DoesSupport(quota::StorageType type) const OVERRIDE;
|
| +
|
| private:
|
| scoped_refptr<base::MessageLoopProxy> db_tracker_thread_;
|
| scoped_refptr<DatabaseTracker> db_tracker_; // only used on its thread
|
|
|