| 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 8e5b4080d1b68e375acd6ad5cd0d796d80bd49a4..21e4f4374f96cfa0b414f6a018a0178ce3d7a2f2 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
|
| @@ -185,7 +185,7 @@ Network.NetworkPanel = class extends UI.Panel {
|
| this._panelToolbar.appendToolbarItem(this._disableCacheCheckbox);
|
|
|
| this._panelToolbar.appendSeparator();
|
| - this._panelToolbar.appendToolbarItem(NetworkConditions.NetworkConditionsSelector.createOfflineToolbarCheckbox());
|
| + this._panelToolbar.appendToolbarItem(MobileThrottling.NetworkConditionsSelector.createOfflineToolbarCheckbox());
|
| this._panelToolbar.appendToolbarItem(this._createNetworkConditionsSelect());
|
|
|
| this._panelToolbar.appendToolbarItem(new UI.ToolbarItem(this._progressBarContainer));
|
| @@ -197,7 +197,7 @@ Network.NetworkPanel = class extends UI.Panel {
|
| _createNetworkConditionsSelect() {
|
| var toolbarItem = new UI.ToolbarComboBox(null);
|
| toolbarItem.setMaxWidth(140);
|
| - NetworkConditions.NetworkConditionsSelector.decorateSelect(toolbarItem.selectElement());
|
| + MobileThrottling.NetworkConditionsSelector.decorateSelect(toolbarItem.selectElement());
|
| return toolbarItem;
|
| }
|
|
|
|
|