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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js

Issue 2417723002: [Devtools] Bug fix of event dividers not showing in network panel (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
index da5ab6ba8e0677a5755d5897caa8141cbab2a9a4..8623c8b3e7d1bdc36a2bb190f8f564ebbd27b2a5 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
@@ -815,6 +815,21 @@ WebInspector.NetworkLogViewColumns.prototype = {
this._timelineGrid.showEventDividers();
},
+ /**
+ * @param {number} time
+ */
+ selectFilmStripFrame: function(time)
+ {
+ for (var divider of this._eventDividers)
+ divider.element.classList.toggle("network-frame-divider-selected", divider.time === time);
+ },
+
+ clearFilmStripFrame: function()
+ {
+ for (var divider of this._eventDividers)
+ divider.element.classList.toggle("network-frame-divider-selected", false);
+ },
+
_updateRowsSize: function()
{
if (Runtime.experiments.isEnabled("canvasNetworkTimeline"))
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698