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

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

Issue 2570553003: DevTools: Hide overview pane on timeline landing page. (Closed)
Patch Set: Created 4 years 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: third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
index 7298c89cf7dc538dbcf41659da5dea5bd5779e51..c3334fc7d830824b0b0778680ce8ea73563eb5f8 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
@@ -728,9 +728,9 @@ Timeline.TimelinePanel = class extends UI.Panel {
_showLandingPage() {
if (this._landingPage)
return;
- this._detailsSplitWidget.detach();
+ this._timelinePane.detach();
this._landingPage = new Timeline.TimelineLandingPage();
- this._landingPage.show(this._timelinePane.element);
+ this._landingPage.show(this.element);
}
_hideLandingPage() {
@@ -738,7 +738,7 @@ Timeline.TimelinePanel = class extends UI.Panel {
return;
this._landingPage.detach();
this._landingPage = null;
- this._detailsSplitWidget.show(this._timelinePane.element);
+ this._timelinePane.show(this.element);
}
/**
« 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