| 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 dab326240c4b5760d3696fbc384d35a17fc5f0ff..8a67949084aad23c39ceac0d50071a0b65d52c79 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
|
| @@ -536,7 +536,7 @@
|
| {
|
| if (this._state !== WebInspector.TimelinePanel.State.Idle)
|
| return;
|
| - WebInspector.TimelineLoader.loadFromFile(this._model, file, this._prepareToLoadTimeline());
|
| + this._model.loadFromFile(file, this._prepareToLoadTimeline());
|
| this._createFileSelector();
|
| },
|
|
|
| @@ -547,7 +547,7 @@
|
| {
|
| if (this._state !== WebInspector.TimelinePanel.State.Idle)
|
| return;
|
| - WebInspector.TimelineLoader.loadFromURL(this._model, url, this._prepareToLoadTimeline());
|
| + this._model.loadFromURL(url, this._prepareToLoadTimeline());
|
| },
|
|
|
| _refreshViews: function()
|
|
|