Index: components/tracing/tracing_messages.h |
diff --git a/components/tracing/tracing_messages.h b/components/tracing/tracing_messages.h |
index 792c476919e4eb8cba17fdbb49b4dba8ee262e11..acfe4be54dcf78083c338f7b6ac4b2f076a07dd0 100644 |
--- a/components/tracing/tracing_messages.h |
+++ b/components/tracing/tracing_messages.h |
@@ -7,6 +7,7 @@ |
#include <vector> |
#include "base/basictypes.h" |
+#include "base/debug/trace_event.h" |
#include "base/sync_socket.h" |
#include "ipc/ipc_channel_handle.h" |
#include "ipc/ipc_message_macros.h" |
@@ -16,10 +17,11 @@ |
#define IPC_MESSAGE_START TracingMsgStart |
// Sent to all child processes to enable trace event recording. |
-IPC_MESSAGE_CONTROL3(TracingMsg_BeginTracing, |
+IPC_MESSAGE_CONTROL4(TracingMsg_BeginTracing, |
std::vector<std::string> /* included_categories */, |
std::vector<std::string> /* excluded_categories */, |
- base::TimeTicks /* browser_time */) |
+ base::TimeTicks /* browser_time */, |
+ int /* base::debug::TraceMode */) |
// Sent to all child processes to disable trace event recording. |
IPC_MESSAGE_CONTROL0(TracingMsg_EndTracing) |