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

Unified Diff: content/public/browser/browser_message_filter.h

Issue 10069054: RefCounted types should not have public destructors, content/ remaining bits (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased to Trunk Created 8 years, 7 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/plugin/plugin_thread.cc ('k') | content/public/browser/browser_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/browser_message_filter.h
diff --git a/content/public/browser/browser_message_filter.h b/content/public/browser/browser_message_filter.h
index 32cfc90ba7e8e9f0642c7e8ed1b7469f321301dc..441ad7054c6096b33132a313914c70b4d6e4c0a5 100644
--- a/content/public/browser/browser_message_filter.h
+++ b/content/public/browser/browser_message_filter.h
@@ -24,7 +24,6 @@ class CONTENT_EXPORT BrowserMessageFilter :
public IPC::Message::Sender {
public:
BrowserMessageFilter();
- virtual ~BrowserMessageFilter();
// IPC::ChannelProxy::MessageFilter methods. If you override them, make sure
// to call them as well. These are always called on the IO thread.
@@ -73,6 +72,8 @@ class CONTENT_EXPORT BrowserMessageFilter :
IPC::Message::Sender* sender);
protected:
+ virtual ~BrowserMessageFilter();
+
// Call this if a message couldn't be deserialized. This kills the renderer.
// Can be called on any thread.
virtual void BadMessageReceived();
« no previous file with comments | « content/plugin/plugin_thread.cc ('k') | content/public/browser/browser_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698