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

Unified Diff: content/browser/renderer_host/quota_dispatcher_host.h

Issue 9566035: Move QuotaPermissionContext to content/public/browser and put it in the content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 8 years, 10 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 | « content/browser/quota_permission_context.h ('k') | content/browser/renderer_host/quota_dispatcher_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/quota_dispatcher_host.h
diff --git a/content/browser/renderer_host/quota_dispatcher_host.h b/content/browser/renderer_host/quota_dispatcher_host.h
index 77553d9cfda5a994aa2116e67fd947a98e169f2f..85917553256f593f920c68602b22f553760e7e63 100644
--- a/content/browser/renderer_host/quota_dispatcher_host.h
+++ b/content/browser/renderer_host/quota_dispatcher_host.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 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.
@@ -12,6 +12,10 @@
class GURL;
+namespace content {
+class QuotaPermissionContext;
+}
+
namespace IPC {
class Message;
}
@@ -20,13 +24,11 @@ namespace quota {
class QuotaManager;
}
-class QuotaPermissionContext;
-
class QuotaDispatcherHost : public content::BrowserMessageFilter {
public:
QuotaDispatcherHost(int process_id,
quota::QuotaManager* quota_manager,
- QuotaPermissionContext* permission_context);
+ content::QuotaPermissionContext* permission_context);
virtual ~QuotaDispatcherHost();
virtual bool OnMessageReceived(const IPC::Message& message,
bool* message_was_ok) OVERRIDE;
@@ -51,7 +53,7 @@ class QuotaDispatcherHost : public content::BrowserMessageFilter {
int process_id_;
quota::QuotaManager* quota_manager_;
- scoped_refptr<QuotaPermissionContext> permission_context_;
+ scoped_refptr<content::QuotaPermissionContext> permission_context_;
IDMap<RequestDispatcher, IDMapOwnPointer> outstanding_requests_;
« no previous file with comments | « content/browser/quota_permission_context.h ('k') | content/browser/renderer_host/quota_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698