| Index: content/browser/renderer_host/media/web_contents_video_capture_device.cc
|
| diff --git a/content/browser/renderer_host/media/web_contents_video_capture_device.cc b/content/browser/renderer_host/media/web_contents_video_capture_device.cc
|
| index de783dcb04435c9034b49f027fce25d4326c1585..8530cf44ef686780f94b5e6a16b6e034457b9151 100644
|
| --- a/content/browser/renderer_host/media/web_contents_video_capture_device.cc
|
| +++ b/content/browser/renderer_host/media/web_contents_video_capture_device.cc
|
| @@ -529,8 +529,9 @@ void CaptureOracle::DidCaptureFrame(
|
| bool success) {
|
| base::AutoLock guard(lock_);
|
|
|
| - TRACE_EVENT_ASYNC_END1("mirroring", "Capture", frame.get(),
|
| - "success", success);
|
| + TRACE_EVENT_ASYNC_END2("mirroring", "Capture", frame.get(),
|
| + "success", success,
|
| + "timestamp", timestamp.ToInternalValue());
|
|
|
| if (!consumer_ || !is_started_)
|
| return; // Capture is stopped.
|
|
|