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

Unified Diff: content/common/child_trace_message_filter.h

Issue 10071038: RefCounted types should not have public destructors, content/browser part 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright bump 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 | « no previous file | content/common/child_trace_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/child_trace_message_filter.h
diff --git a/content/common/child_trace_message_filter.h b/content/common/child_trace_message_filter.h
index 51f7bd3d167f923412cd6d8302a8c3bc282e4015..d913d6a09454adb439bc7dc9ad7aaad1889ae244 100644
--- a/content/common/child_trace_message_filter.h
+++ b/content/common/child_trace_message_filter.h
@@ -15,13 +15,15 @@
class ChildTraceMessageFilter : public IPC::ChannelProxy::MessageFilter {
public:
ChildTraceMessageFilter();
- virtual ~ChildTraceMessageFilter();
// IPC::ChannelProxy::MessageFilter implementation.
virtual void OnFilterAdded(IPC::Channel* channel) OVERRIDE;
virtual void OnFilterRemoved() OVERRIDE;
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ protected:
+ virtual ~ChildTraceMessageFilter();
+
private:
// Message handlers.
void OnBeginTracing(const std::vector<std::string>& included_categories,
« no previous file with comments | « no previous file | content/common/child_trace_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698