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

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

Issue 2454893004: [Devtools] Added contextmenu item to allow different timeline styles for exp (Closed)
Patch Set: changes 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
Index: third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
index 3121c9e7582dd75b238efeea7f4e5cfe2776463b..480642e617c712e33db13a1969b77b2421d4246e 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
@@ -215,6 +215,8 @@ WebInspector.NetworkDataGridNode.prototype = {
*/
_createTimelineBar: function(cell)
{
+ if (Runtime.experiments.isEnabled("canvasNetworkTimeline"))
+ return;
cell = cell.createChild("div");
this._timelineCell = cell;

Powered by Google App Engine
This is Rietveld 408576698