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

Unified Diff: content/browser/renderer_host/pepper_message_filter.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/pepper_message_filter.h
diff --git a/content/browser/renderer_host/pepper_message_filter.h b/content/browser/renderer_host/pepper_message_filter.h
index 86577931e90e8426b2a2828345497022efcbf020..bace9d3199cd372b040ffd4b86c94406a65c9608 100644
--- a/content/browser/renderer_host/pepper_message_filter.h
+++ b/content/browser/renderer_host/pepper_message_filter.h
@@ -67,10 +67,7 @@ class PepperMessageFilter
// Constructor when used in the context of a PPAPI process (the argument is
// provided for sanity checking).
- explicit PepperMessageFilter(ProcessType type,
- net::HostResolver* host_resolver);
-
- virtual ~PepperMessageFilter();
+ PepperMessageFilter(ProcessType type, net::HostResolver* host_resolver);
// content::BrowserMessageFilter methods.
virtual void OverrideThreadForMessage(
@@ -99,6 +96,9 @@ class PepperMessageFilter
const net::SSLConfig& ssl_config() { return ssl_config_; }
+ protected:
+ virtual ~PepperMessageFilter();
+
private:
struct OnConnectTcpBoundInfo {
int routing_id;
« no previous file with comments | « content/browser/renderer_host/pepper_file_message_filter.cc ('k') | content/browser/renderer_host/pepper_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698