Index: content/browser/devtools/protocol/input_handler.cc |
diff --git a/content/browser/devtools/protocol/input_handler.cc b/content/browser/devtools/protocol/input_handler.cc |
index 0b4bdcc3f5422f1a0e2d1f189c2f28e9e545f084..c0def4e411b8b18386e76fc1f21f03d7f05e1fc7 100644 |
--- a/content/browser/devtools/protocol/input_handler.cc |
+++ b/content/browser/devtools/protocol/input_handler.cc |
@@ -398,8 +398,8 @@ void InputHandler::SynthesizeRepeatingScroll( |
DevToolsCommandId command_id) { |
if (!interaction_marker_name.empty()) { |
// TODO(alexclarke): Can we move this elsewhere? It doesn't really fit here. |
- TRACE_EVENT_COPY_ASYNC_BEGIN0("benchmark", |
- interaction_marker_name.c_str(), command_id); |
+ TRACE_EVENT_COPY_ASYNC_BEGIN0("benchmark", interaction_marker_name.c_str(), |
+ command_id.call_id); |
} |
host_->QueueSyntheticGesture( |
@@ -417,8 +417,8 @@ void InputHandler::OnScrollFinished( |
DevToolsCommandId command_id, |
SyntheticGesture::Result result) { |
if (!interaction_marker_name.empty()) { |
- TRACE_EVENT_COPY_ASYNC_END0("benchmark", |
- interaction_marker_name.c_str(), command_id); |
+ TRACE_EVENT_COPY_ASYNC_END0("benchmark", interaction_marker_name.c_str(), |
+ command_id.call_id); |
} |
if (repeat_count > 0) { |