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

Unified Diff: content/browser/profiler_message_filter.cc

Issue 1325653003: Type change in StackSamplingProfiler from void* to uintptr_t. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@UMA2_refactor
Patch Set: Created 5 years, 4 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 4bd85e21a54d644c71b51c60fd272e1e8d23f745..7840179aa4ec6cb977334bcf6ac124a666d8a837 100644
--- a/content/browser/profiler_message_filter.cc
+++ b/content/browser/profiler_message_filter.cc
@@ -26,6 +26,8 @@ bool ProfilerMessageFilter::OnMessageReceived(const IPC::Message& message) {
IPC_BEGIN_MESSAGE_MAP(ProfilerMessageFilter, message)
IPC_MESSAGE_HANDLER(ChildProcessHostMsg_ChildProfilerData,
OnChildProfilerData)
+ IPC_MESSAGE_HANDLER(ChildProcessHostMsg_ChildStackProfilerData,
+ OnChildStackProfilerData)
#if defined(USE_TCMALLOC)
IPC_MESSAGE_HANDLER(ChildProcessHostMsg_TcmallocStats, OnTcmallocStats)
#endif
@@ -43,6 +45,11 @@ void ProfilerMessageFilter::OnChildProfilerData(
sequence_number, profiler_data, process_type_);
}
+void ProfilerMessageFilter::OnChildStackProfilerData(
+ const base::StackSamplingProfiler::CallStackProfiles& profiler_data,
+ const base::CallStackProfileParams& params,
+ base::TimeTicks start_timestamp) {}
+
#if defined(USE_TCMALLOC)
void ProfilerMessageFilter::OnTcmallocStats(const std::string& output) {
AboutTcmallocOutputs::GetInstance()->OnStatsForChildProcess(

Powered by Google App Engine
This is Rietveld 408576698