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

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

Issue 221093002: Timeline: fix frame event dividers in Timeline's main view (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/TimelinePanel.js
diff --git a/Source/devtools/front_end/TimelinePanel.js b/Source/devtools/front_end/TimelinePanel.js
index ed2cb3c2c52595798d654354b11627c676c07797..3f8058fac5d69ed3454013bfacdacce45ad926e0 100644
--- a/Source/devtools/front_end/TimelinePanel.js
+++ b/Source/devtools/front_end/TimelinePanel.js
@@ -308,7 +308,6 @@ WebInspector.TimelinePanel.prototype = {
this._viewsMap[mode] = views;
}
- this._timelineView().setFrameModel(mode === WebInspector.TimelinePanel.Mode.Frames ? this._frameModel() : null);
return views;
},
@@ -573,6 +572,7 @@ WebInspector.TimelinePanel.prototype = {
this._stackView.appendView(view, "timelinePanelTimelineStackSplitViewState");
view.refreshRecords(this._textFilter._regex);
}
+ this._timelineView().setFrameModel(mode === WebInspector.TimelinePanel.Mode.Frames ? this._frameModel() : null);
this._overviewControl = views.overviewView;
this._overviewPane.setOverviewControl(this._overviewControl);
this._updateSelectionDetails();
« 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