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

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

Issue 10068037: RefCounted types should not have public destructors, content/browser part 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: MSVC fixes Created 8 years, 8 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
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 85917553256f593f920c68602b22f553760e7e63..c5c63474eeabd4ee16cbdf484dc14769b1c4fc1c 100644
--- a/content/browser/renderer_host/quota_dispatcher_host.h
+++ b/content/browser/renderer_host/quota_dispatcher_host.h
@@ -29,10 +29,14 @@ class QuotaDispatcherHost : public content::BrowserMessageFilter {
QuotaDispatcherHost(int process_id,
quota::QuotaManager* quota_manager,
content::QuotaPermissionContext* permission_context);
- virtual ~QuotaDispatcherHost();
+
+ // content::BrowserMessageFilter:
virtual bool OnMessageReceived(const IPC::Message& message,
bool* message_was_ok) OVERRIDE;
+ protected:
+ virtual ~QuotaDispatcherHost();
+
private:
class RequestDispatcher;
class QueryUsageAndQuotaDispatcher;
« no previous file with comments | « content/browser/renderer_host/pepper_message_filter.cc ('k') | content/browser/renderer_host/quota_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698