| Index: third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
|
| index 5a5736d4dea08dcd495de8d828667203a23539a6..d17140c0497f0299ba6780216dfc34ff70017a95 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
|
| @@ -716,9 +716,8 @@ WebInspector.NetworkPanel.FilmStripRecorder.prototype = {
|
| if (!this._tracingModel)
|
| return;
|
| this._tracingModel.tracingComplete();
|
| - var resourceTreeModel = this._target.resourceTreeModel;
|
| + WebInspector.targetManager.resumeReload(this._target);
|
| this._target = null;
|
| - setImmediate(resourceTreeModel.resumeReload.bind(resourceTreeModel));
|
| this._callback(new WebInspector.FilmStripModel(this._tracingModel, this._timeCalculator.minimumBoundary() * 1000));
|
| delete this._callback;
|
| },
|
| @@ -770,7 +769,7 @@ WebInspector.NetworkPanel.FilmStripRecorder.prototype = {
|
| return;
|
|
|
| this._target.tracingManager.stop();
|
| - this._target.resourceTreeModel.suspendReload();
|
| + WebInspector.targetManager.suspendReload(this._target);
|
| this._callback = callback;
|
| this._filmStripView.setStatusText(WebInspector.UIString("Fetching frames..."));
|
| }
|
|
|