blob: e4ea5ebeb07b5a2316f4cda9da8405facf77178b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBKIT_BROWSER_DATABASE_DATABASE_QUOTA_CLIENT_H_
#define WEBKIT_BROWSER_DATABASE_DATABASE_QUOTA_CLIENT_H_
#include <set>
#include <string>
#include "base/memory/ref_counted.h"
#include "base/message_loop/message_loop_proxy.h"
#include "webkit/browser/quota/quota_client.h"
#include "webkit/common/quota/quota_types.h"
#include "webkit/common/storage_export.h"
namespace storage {
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 STORAGE_EXPORT_PRIVATE DatabaseQuotaClient
: public storage::QuotaClient {
public:
DatabaseQuotaClient(
base::MessageLoopProxy* tracker_thread,
DatabaseTracker* tracker);
virtual ~DatabaseQuotaClient();
// QuotaClient method overrides
virtual ID id() const OVERRIDE;
virtual void OnQuotaManagerDestroyed() OVERRIDE;
virtual void GetOriginUsage(const GURL& origin_url,
storage::StorageType type,
const GetUsageCallback& callback) OVERRIDE;
virtual void GetOriginsForType(storage::StorageType type,
const GetOriginsCallback& callback) OVERRIDE;
virtual void GetOriginsForHost(storage::StorageType type,
const std::string& host,
const GetOriginsCallback& callback) OVERRIDE;
virtual void DeleteOriginData(const GURL& origin,
storage::StorageType type,
const DeletionCallback& callback) OVERRIDE;
virtual bool DoesSupport(storage::StorageType type) const OVERRIDE;
private:
scoped_refptr<base::MessageLoopProxy> db_tracker_thread_;
scoped_refptr<DatabaseTracker> db_tracker_; // only used on its thread
DISALLOW_COPY_AND_ASSIGN(DatabaseQuotaClient);
};
} // namespace storage
#endif // WEBKIT_BROWSER_DATABASE_DATABASE_QUOTA_CLIENT_H_
|