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

Unified Diff: Source/devtools/front_end/timeline/TimelinePanel.js

Issue 1158273003: DevTools: disable filmstrip in frames mode on timeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/timeline/TimelinePanel.js
diff --git a/Source/devtools/front_end/timeline/TimelinePanel.js b/Source/devtools/front_end/timeline/TimelinePanel.js
index dd9ad74826e1d597d893c9052e38e2a003b33b5b..dcd3434551c0eb4b0b5fcb0808b76c759631edad 100644
--- a/Source/devtools/front_end/timeline/TimelinePanel.js
+++ b/Source/devtools/front_end/timeline/TimelinePanel.js
@@ -629,7 +629,7 @@ WebInspector.TimelinePanel.prototype = {
this._addModeView(new WebInspector.MemoryCountersGraph(this, this._model));
}
- if (Runtime.experiments.isEnabled("filmStripInNetworkAndTimeline") && this._captureFilmStripSetting.get())
+ if (Runtime.experiments.isEnabled("filmStripInNetworkAndTimeline") && !isFrameMode && this._captureFilmStripSetting.get())
this._overviewControls.push(new WebInspector.TimelineFilmStripOverview(this._model, this._tracingModel));
var mainTarget = WebInspector.targetManager.mainTarget();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698