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

Unified Diff: content/browser/trace_message_filter.cc

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/trace_message_filter.h ('k') | content/browser/trace_subscriber_stdio.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/trace_message_filter.cc
diff --git a/content/browser/trace_message_filter.cc b/content/browser/trace_message_filter.cc
index 739d413774a384c2e26223fe7bbf57adda272c85..b977362cd768b5163e48ec2629e7c99b6a1ac35f 100644
--- a/content/browser/trace_message_filter.cc
+++ b/content/browser/trace_message_filter.cc
@@ -17,9 +17,6 @@ TraceMessageFilter::TraceMessageFilter() :
is_awaiting_bpf_ack_(false) {
}
-TraceMessageFilter::~TraceMessageFilter() {
-}
-
void TraceMessageFilter::OnFilterAdded(IPC::Channel* channel) {
// Always on IO thread (BrowserMessageFilter guarantee).
BrowserMessageFilter::OnFilterAdded(channel);
@@ -81,6 +78,8 @@ void TraceMessageFilter::SendGetTraceBufferPercentFull() {
Send(new ChildProcessMsg_GetTraceBufferPercentFull);
}
+TraceMessageFilter::~TraceMessageFilter() {}
+
void TraceMessageFilter::OnChildSupportsTracing() {
has_child_ = true;
TraceControllerImpl::GetInstance()->AddFilter(this);
« no previous file with comments | « content/browser/trace_message_filter.h ('k') | content/browser/trace_subscriber_stdio.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698