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

Unified Diff: content/common/child_process_messages.h

Issue 1021053003: Delivering the FIRST_NONEMPTY_PAINT phase changing event to base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@phase_splitting
Patch Set: Fixing a typo. Created 5 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/common/child_process_messages.h
diff --git a/content/common/child_process_messages.h b/content/common/child_process_messages.h
index 830cd62be0a3d48b16180cc70c050e764a7a62c5..f01a1cd63aa210ba9e25256a801c823c264acc3b 100644
--- a/content/common/child_process_messages.h
+++ b/content/common/child_process_messages.h
@@ -103,8 +103,14 @@ IPC_MESSAGE_CONTROL1(ChildProcessMsg_SetProfilerStatus,
// Send to all the child processes to send back profiler data (ThreadData in
// tracked_objects).
-IPC_MESSAGE_CONTROL1(ChildProcessMsg_GetChildProfilerData,
- int /* sequence_number */)
+IPC_MESSAGE_CONTROL2(ChildProcessMsg_GetChildProfilerData,
+ int /* sequence_number */,
+ int /* current_profiling_phase */)
+
+// Send to all the child processes to to mark the current profiling phase as
Ilya Sherman 2015/04/08 23:36:15 nit: "to to" -> "to"
vadimt 2015/04/09 00:15:03 Done.
+// finished and start a new one.
Ilya Sherman 2015/04/08 23:36:15 nit: "new one" -> "new phase"
vadimt 2015/04/09 00:15:03 Done.
+IPC_MESSAGE_CONTROL1(ChildProcessMsg_ProfilingPhaseCompleted,
+ int /* profiling_phase */)
// Send to all the child processes to send back histogram data.
IPC_MESSAGE_CONTROL1(ChildProcessMsg_GetChildHistogramData,

Powered by Google App Engine
This is Rietveld 408576698