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

Unified Diff: content/common/child_trace_message_filter.cc

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 | « content/common/child_trace_message_filter.h ('k') | content/common/db_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/child_trace_message_filter.cc
diff --git a/content/common/child_trace_message_filter.cc b/content/common/child_trace_message_filter.cc
index cac19eaa8c88e7f3cfeccdd97ec6250458319c01..adc5426852c92610b1eca9753b190d8a8008e7e7 100644
--- a/content/common/child_trace_message_filter.cc
+++ b/content/common/child_trace_message_filter.cc
@@ -11,11 +11,7 @@
#include "content/common/child_process_messages.h"
-ChildTraceMessageFilter::ChildTraceMessageFilter() : channel_(NULL) {
-}
-
-ChildTraceMessageFilter::~ChildTraceMessageFilter() {
-}
+ChildTraceMessageFilter::ChildTraceMessageFilter() : channel_(NULL) {}
void ChildTraceMessageFilter::OnFilterAdded(IPC::Channel* channel) {
channel_ = channel;
@@ -45,6 +41,8 @@ bool ChildTraceMessageFilter::OnMessageReceived(const IPC::Message& message) {
return handled;
}
+ChildTraceMessageFilter::~ChildTraceMessageFilter() {}
+
void ChildTraceMessageFilter::OnBeginTracing(
const std::vector<std::string>& included_categories,
const std::vector<std::string>& excluded_categories) {
« no previous file with comments | « content/common/child_trace_message_filter.h ('k') | content/common/db_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698