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

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

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.cc
diff --git a/content/browser/renderer_host/quota_dispatcher_host.cc b/content/browser/renderer_host/quota_dispatcher_host.cc
index abf0b26b62dbe8f5888324b775eb3e1c85621d2e..a590d591e81575ed6cc3f9ed19a682870ae8fb8d 100644
--- a/content/browser/renderer_host/quota_dispatcher_host.cc
+++ b/content/browser/renderer_host/quota_dispatcher_host.cc
@@ -206,9 +206,6 @@ QuotaDispatcherHost::QuotaDispatcherHost(
permission_context_(permission_context) {
}
-QuotaDispatcherHost::~QuotaDispatcherHost() {
-}
-
bool QuotaDispatcherHost::OnMessageReceived(
const IPC::Message& message, bool* message_was_ok) {
*message_was_ok = true;
@@ -223,6 +220,8 @@ bool QuotaDispatcherHost::OnMessageReceived(
return handled;
}
+QuotaDispatcherHost::~QuotaDispatcherHost() {}
+
void QuotaDispatcherHost::OnQueryStorageUsageAndQuota(
int request_id,
const GURL& origin,

Powered by Google App Engine
This is Rietveld 408576698