Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Unified Diff: webkit/database/database_quota_client.h

Issue 15367010: Move webkit/database to webkit/browser and webkit/common. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/database/database_connections_unittest.cc ('k') | webkit/database/database_quota_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/database/database_quota_client.h
===================================================================
--- webkit/database/database_quota_client.h (revision 201604)
+++ webkit/database/database_quota_client.h (working copy)
@@ -1,55 +0,0 @@
-// 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_DATABASE_DATABASE_QUOTA_CLIENT_H_
-#define WEBKIT_DATABASE_DATABASE_QUOTA_CLIENT_H_
-
-#include <set>
-#include <string>
-
-#include "base/memory/ref_counted.h"
-#include "base/message_loop_proxy.h"
-#include "webkit/quota/quota_client.h"
-#include "webkit/quota/quota_types.h"
-#include "webkit/storage/webkit_storage_export.h"
-
-namespace webkit_database {
-
-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_EXPORT_PRIVATE DatabaseQuotaClient
- : public quota::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,
- quota::StorageType type,
- const GetUsageCallback& callback) OVERRIDE;
- virtual void GetOriginsForType(quota::StorageType type,
- const GetOriginsCallback& callback) OVERRIDE;
- virtual void GetOriginsForHost(quota::StorageType type,
- const std::string& host,
- const GetOriginsCallback& callback) OVERRIDE;
- virtual void DeleteOriginData(const GURL& origin,
- quota::StorageType type,
- const DeletionCallback& callback) 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 webkit_database
-
-#endif // WEBKIT_DATABASE_DATABASE_QUOTA_CLIENT_H_
« no previous file with comments | « webkit/database/database_connections_unittest.cc ('k') | webkit/database/database_quota_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698