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

Unified Diff: webkit/browser/fileapi/file_system_quota_client.h

Issue 539143002: Migrate webkit/browser/ to storage/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix android build Created 6 years, 3 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/browser/fileapi/file_system_options.cc ('k') | webkit/browser/fileapi/file_system_quota_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/fileapi/file_system_quota_client.h
diff --git a/webkit/browser/fileapi/file_system_quota_client.h b/webkit/browser/fileapi/file_system_quota_client.h
index 7709b6d5f3b54a6736a4a67f0e783a65a3fb9366..578a2dc7f729e2ae8a87d0249b2465f81ff4a9cd 100644
--- a/webkit/browser/fileapi/file_system_quota_client.h
+++ b/webkit/browser/fileapi/file_system_quota_client.h
@@ -1,70 +1,5 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Copyright 2014 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_FILEAPI_FILE_SYSTEM_QUOTA_CLIENT_H_
-#define WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_QUOTA_CLIENT_H_
-
-#include <set>
-#include <string>
-#include <utility>
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "base/files/file_path.h"
-#include "base/memory/ref_counted.h"
-#include "webkit/browser/fileapi/file_system_quota_util.h"
-#include "webkit/browser/quota/quota_client.h"
-#include "webkit/browser/storage_browser_export.h"
-#include "webkit/common/fileapi/file_system_types.h"
-
-namespace base {
-class SequencedTaskRunner;
-}
-
-namespace storage {
-
-class FileSystemContext;
-
-// An instance of this class is created per-profile. This class
-// is self-destructed and will delete itself when OnQuotaManagerDestroyed
-// is called.
-// All of the public methods of this class are called by the quota manager
-// (except for the constructor/destructor).
-class STORAGE_EXPORT_PRIVATE FileSystemQuotaClient
- : public NON_EXPORTED_BASE(storage::QuotaClient) {
- public:
- FileSystemQuotaClient(
- FileSystemContext* file_system_context,
- bool is_incognito);
- virtual ~FileSystemQuotaClient();
-
- // QuotaClient methods.
- virtual storage::QuotaClient::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:
- base::SequencedTaskRunner* file_task_runner() const;
-
- scoped_refptr<FileSystemContext> file_system_context_;
-
- bool is_incognito_;
-
- DISALLOW_COPY_AND_ASSIGN(FileSystemQuotaClient);
-};
-
-} // namespace storage
-
-#endif // WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_QUOTA_CLIENT_H_
+#include "storage/browser/fileapi/file_system_quota_client.h"
« no previous file with comments | « webkit/browser/fileapi/file_system_options.cc ('k') | webkit/browser/fileapi/file_system_quota_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698