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

Unified Diff: content/browser/trace_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
« no previous file with comments | « content/browser/speech/speech_recognizer_impl.cc ('k') | content/browser/trace_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/trace_message_filter.h
diff --git a/content/browser/trace_message_filter.h b/content/browser/trace_message_filter.h
index ef0d8fa8ee2fb49ec288299dd5a6db2f82dead65..82d99966d1f59a3bfc55f79c062bda9aca2ac59c 100644
--- a/content/browser/trace_message_filter.h
+++ b/content/browser/trace_message_filter.h
@@ -16,7 +16,6 @@
class TraceMessageFilter : public content::BrowserMessageFilter {
public:
TraceMessageFilter();
- virtual ~TraceMessageFilter();
// content::BrowserMessageFilter override.
virtual void OnFilterAdded(IPC::Channel* channel) OVERRIDE;
@@ -31,6 +30,9 @@ class TraceMessageFilter : public content::BrowserMessageFilter {
void SendEndTracing();
void SendGetTraceBufferPercentFull();
+ protected:
+ virtual ~TraceMessageFilter();
+
private:
// Message handlers.
void OnChildSupportsTracing();
« no previous file with comments | « content/browser/speech/speech_recognizer_impl.cc ('k') | content/browser/trace_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698