| 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 33ea324e5d076d8e86bd3be79bb7d7c9c0568dcb..56c6f5aaad9181e419e91decf884d9826bcdc317 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
|
| @@ -103,7 +103,7 @@ WebInspector.NetworkPanel = function()
|
| this._networkLogView.addEventListener(WebInspector.NetworkLogView.Events.UpdateRequest, this._onUpdateRequest, this);
|
|
|
| WebInspector.DataSaverInfobar.maybeShowInPanel(this);
|
| -}
|
| +};
|
|
|
| WebInspector.NetworkPanel.displayScreenshotDelay = 1000;
|
|
|
| @@ -589,7 +589,7 @@ WebInspector.NetworkPanel.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Panel.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -597,7 +597,7 @@ WebInspector.NetworkPanel.prototype = {
|
| */
|
| WebInspector.NetworkPanel.ContextMenuProvider = function()
|
| {
|
| -}
|
| +};
|
|
|
| WebInspector.NetworkPanel.ContextMenuProvider.prototype = {
|
| /**
|
| @@ -610,7 +610,7 @@ WebInspector.NetworkPanel.ContextMenuProvider.prototype = {
|
| {
|
| WebInspector.NetworkPanel._instance().appendApplicableItems(event, contextMenu, target);
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -618,7 +618,7 @@ WebInspector.NetworkPanel.ContextMenuProvider.prototype = {
|
| */
|
| WebInspector.NetworkPanel.RequestRevealer = function()
|
| {
|
| -}
|
| +};
|
|
|
| WebInspector.NetworkPanel.RequestRevealer.prototype = {
|
| /**
|
| @@ -633,7 +633,7 @@ WebInspector.NetworkPanel.RequestRevealer.prototype = {
|
| var panel = WebInspector.NetworkPanel._instance();
|
| return WebInspector.viewManager.showView("network").then(panel.revealAndHighlightRequest.bind(panel, request));
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @param {!Array<{filterType: !WebInspector.NetworkLogView.FilterType, filterValue: string}>} filters
|
| @@ -646,7 +646,7 @@ WebInspector.NetworkPanel.revealAndFilter = function(filters)
|
| filterString += `${filter.filterType}:${filter.filterValue} `;
|
| panel._networkLogView.setTextFilterValue(filterString);
|
| WebInspector.viewManager.showView("network");
|
| -}
|
| +};
|
|
|
| /**
|
| * @return {!WebInspector.NetworkPanel}
|
| @@ -654,7 +654,7 @@ WebInspector.NetworkPanel.revealAndFilter = function(filters)
|
| WebInspector.NetworkPanel._instance = function()
|
| {
|
| return /** @type {!WebInspector.NetworkPanel} */ (self.runtime.sharedInstance(WebInspector.NetworkPanel));
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -666,7 +666,7 @@ WebInspector.NetworkPanel.FilmStripRecorder = function(timeCalculator, filmStrip
|
| {
|
| this._timeCalculator = timeCalculator;
|
| this._filmStripView = filmStripView;
|
| -}
|
| +};
|
|
|
| WebInspector.NetworkPanel.FilmStripRecorder.prototype = {
|
| /**
|
| @@ -751,7 +751,7 @@ WebInspector.NetworkPanel.FilmStripRecorder.prototype = {
|
| this._callback = callback;
|
| this._filmStripView.setStatusText(WebInspector.UIString("Fetching frames..."));
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -759,7 +759,7 @@ WebInspector.NetworkPanel.FilmStripRecorder.prototype = {
|
| */
|
| WebInspector.NetworkPanel.RecordActionDelegate = function()
|
| {
|
| -}
|
| +};
|
| WebInspector.NetworkPanel.RecordActionDelegate.prototype = {
|
| /**
|
| * @override
|
| @@ -774,4 +774,4 @@ WebInspector.NetworkPanel.RecordActionDelegate.prototype = {
|
| panel._toggleRecording();
|
| return true;
|
| }
|
| -}
|
| +};
|
|
|