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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js

Issue 2080633002: DevTools: render markers as circles on the main timeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaselined tests Created 4 years, 6 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: third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
index b17bfa5406ba93ba78f360be8aff30d0c89ac21a..d374d3cd8f6b1b788cdac9f639ce42f9cd1ddc31 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
@@ -438,6 +438,9 @@ WebInspector.TimelineUIUtils.buildDetailsTextForTraceEvent = function(event, tar
if (url)
detailsText = WebInspector.displayNameForURL(url);
break;
+ case recordType.TimeStamp:
+ detailsText = eventData["message"];
+ break;
case recordType.WebSocketCreate:
case recordType.WebSocketSendHandshakeRequest:

Powered by Google App Engine
This is Rietveld 408576698