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 c0def4e411b8b18386e76fc1f21f03d7f05e1fc7..0b4bdcc3f5422f1a0e2d1f189c2f28e9e545f084 100644 |
--- a/content/browser/devtools/protocol/input_handler.cc |
+++ b/content/browser/devtools/protocol/input_handler.cc |
@@ -398,8 +398,8 @@ |
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.call_id); |
+ TRACE_EVENT_COPY_ASYNC_BEGIN0("benchmark", |
+ interaction_marker_name.c_str(), command_id); |
} |
host_->QueueSyntheticGesture( |
@@ -417,8 +417,8 @@ |
DevToolsCommandId command_id, |
SyntheticGesture::Result result) { |
if (!interaction_marker_name.empty()) { |
- TRACE_EVENT_COPY_ASYNC_END0("benchmark", interaction_marker_name.c_str(), |
- command_id.call_id); |
+ TRACE_EVENT_COPY_ASYNC_END0("benchmark", |
+ interaction_marker_name.c_str(), command_id); |
} |
if (repeat_count > 0) { |