| 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 b1aaaf7c288103d53a95c088e362d60b376de11e..5b565b5c4c4f95783b92f928e450410d93a8791d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
|
| @@ -1791,11 +1791,6 @@ WebInspector.TimelinePanel.StatusPane.prototype = {
|
| __proto__: WebInspector.VBox.prototype
|
| }
|
|
|
| -WebInspector.TimelinePanel.show = function()
|
| -{
|
| - WebInspector.inspectorView.setCurrentPanel(WebInspector.TimelinePanel.instance());
|
| -}
|
| -
|
| /**
|
| * @return {!WebInspector.TimelinePanel}
|
| */
|
| @@ -1819,8 +1814,9 @@ WebInspector.LoadTimelineHandler.prototype = {
|
| */
|
| handleQueryParam: function(value)
|
| {
|
| - WebInspector.TimelinePanel.show();
|
| - WebInspector.TimelinePanel.instance()._loadFromURL(window.decodeURIComponent(value));
|
| + WebInspector.viewManager.showView("timeline").then(() => {
|
| + WebInspector.TimelinePanel.instance()._loadFromURL(window.decodeURIComponent(value));
|
| + });
|
| }
|
| }
|
|
|
|
|