| 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 aff3f1680709c7144d4c71fd072c41a4888a4eb2..3176e423eef3cf19c4842948d254357c66bc581a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
|
| @@ -273,7 +273,13 @@ WebInspector.NetworkPanel.prototype = {
|
| _load: function(event)
|
| {
|
| if (this._filmStripRecorder && this._filmStripRecorder.isRecording())
|
| - this._pendingStopTimer = setTimeout(this._toggleRecord.bind(this, false), 1000);
|
| + this._pendingStopTimer = setTimeout(this._stopFilmStripRecording.bind(this), 1000);
|
| + },
|
| +
|
| + _stopFilmStripRecording: function()
|
| + {
|
| + this._filmStripRecorder.stopRecording(this._filmStripAvailable.bind(this));
|
| + delete this._pendingStopTimer;
|
| },
|
|
|
| _toggleLargerRequests: function()
|
|
|