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

Unified Diff: content/browser/profiler_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
Index: content/browser/profiler_message_filter.cc
diff --git a/content/browser/profiler_message_filter.cc b/content/browser/profiler_message_filter.cc
index f8f89f44bae3f619e9a2acd69e5286a74f35c66a..d1d3e8f29248dc6b4f1ebf69512bf5ba832d6720 100644
--- a/content/browser/profiler_message_filter.cc
+++ b/content/browser/profiler_message_filter.cc
@@ -16,9 +16,6 @@ ProfilerMessageFilter::ProfilerMessageFilter(ProcessType process_type)
: process_type_(process_type) {
}
-ProfilerMessageFilter::~ProfilerMessageFilter() {
-}
-
void ProfilerMessageFilter::OnChannelConnected(int32 peer_pid) {
BrowserMessageFilter::OnChannelConnected(peer_pid);
@@ -41,6 +38,8 @@ bool ProfilerMessageFilter::OnMessageReceived(const IPC::Message& message,
return handled;
}
+ProfilerMessageFilter::~ProfilerMessageFilter() {}
+
void ProfilerMessageFilter::OnChildProfilerData(
int sequence_number,
const tracked_objects::ProcessDataSnapshot& profiler_data) {
« no previous file with comments | « content/browser/profiler_message_filter.h ('k') | content/browser/renderer_host/media/audio_renderer_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698