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 3176e423eef3cf19c4842948d254357c66bc581a..0961e6d5b7d32596f57ea190eba58f5130c9355f 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js |
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js |
@@ -105,6 +105,8 @@ WebInspector.NetworkPanel = function() |
WebInspector.DataSaverInfobar.maybeShowInPanel(this); |
} |
+WebInspector.NetworkPanel.displayScreenshotDelay = 1000; |
+ |
WebInspector.NetworkPanel.prototype = { |
/** |
* @param {!WebInspector.Event} event |
@@ -273,7 +275,7 @@ WebInspector.NetworkPanel.prototype = { |
_load: function(event) |
{ |
if (this._filmStripRecorder && this._filmStripRecorder.isRecording()) |
- this._pendingStopTimer = setTimeout(this._stopFilmStripRecording.bind(this), 1000); |
+ this._pendingStopTimer = setTimeout(this._stopFilmStripRecording.bind(this), WebInspector.NetworkPanel.displayScreenshotDelay); |
}, |
_stopFilmStripRecording: function() |