Commit dd84f831 authored by valih's avatar valih Committed by Commit bot

DevTools: continue recording network activity after load

BUG=569557

Review-Url: https://codereview.chromium.org/2392553003
Cr-Commit-Position: refs/heads/master@{#423703}
parent c713e709
...@@ -273,7 +273,13 @@ WebInspector.NetworkPanel.prototype = { ...@@ -273,7 +273,13 @@ WebInspector.NetworkPanel.prototype = {
_load: function(event) _load: function(event)
{ {
if (this._filmStripRecorder && this._filmStripRecorder.isRecording()) 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() _toggleLargerRequests: function()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment