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

Unified Diff: chrome/browser/renderer_host/plugin_info_message_filter.cc

Issue 10071036: RefCounted types should not have public destructors, chrome/browser/ part 6 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation 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
« no previous file with comments | « chrome/browser/renderer_host/plugin_info_message_filter.h ('k') | chrome/browser/rlz/rlz_extension_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/plugin_info_message_filter.cc
diff --git a/chrome/browser/renderer_host/plugin_info_message_filter.cc b/chrome/browser/renderer_host/plugin_info_message_filter.cc
index 379941c4f40e4356caa2d07a63d50bb5b9499638..5cc5178ba7e0665e2d4dd3d7937032025c42045a 100644
--- a/chrome/browser/renderer_host/plugin_info_message_filter.cc
+++ b/chrome/browser/renderer_host/plugin_info_message_filter.cc
@@ -57,8 +57,6 @@ PluginInfoMessageFilter::PluginInfoMessageFilter(
weak_ptr_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)) {
}
-PluginInfoMessageFilter::~PluginInfoMessageFilter() {}
-
bool PluginInfoMessageFilter::OnMessageReceived(const IPC::Message& message,
bool* message_was_ok) {
IPC_BEGIN_MESSAGE_MAP_EX(PluginInfoMessageFilter, message, *message_was_ok)
@@ -79,6 +77,8 @@ void PluginInfoMessageFilter::OnDestruct() const {
content::BrowserThread::DeleteOnUIThread::Destruct(this);
}
+PluginInfoMessageFilter::~PluginInfoMessageFilter() {}
+
struct PluginInfoMessageFilter::GetPluginInfo_Params {
int render_view_id;
GURL url;
« no previous file with comments | « chrome/browser/renderer_host/plugin_info_message_filter.h ('k') | chrome/browser/rlz/rlz_extension_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698