| 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 92bc783dc85e750cad369f6dc11f4801c6169ae0..26747b30ec3c08b2b5f74b28dfc43631a0b75ac8 100644
 | 
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
 | 
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
 | 
| @@ -177,7 +177,7 @@ Network.NetworkPanel = class extends UI.Panel {
 | 
|  
 | 
|      this._panelToolbar.appendSeparator();
 | 
|      this._panelToolbar.appendToolbarItem(this._createBlockedURLsButton());
 | 
| -    this._panelToolbar.appendToolbarItem(Components.NetworkConditionsSelector.createOfflineToolbarCheckbox());
 | 
| +    this._panelToolbar.appendToolbarItem(NetworkConditions.NetworkConditionsSelector.createOfflineToolbarCheckbox());
 | 
|      this._panelToolbar.appendToolbarItem(this._createNetworkConditionsSelect());
 | 
|      this._panelToolbar.appendToolbarItem(new UI.ToolbarItem(this._progressBarContainer));
 | 
|    }
 | 
| @@ -205,7 +205,7 @@ Network.NetworkPanel = class extends UI.Panel {
 | 
|    _createNetworkConditionsSelect() {
 | 
|      var toolbarItem = new UI.ToolbarComboBox(null);
 | 
|      toolbarItem.setMaxWidth(140);
 | 
| -    Components.NetworkConditionsSelector.decorateSelect(toolbarItem.selectElement());
 | 
| +    NetworkConditions.NetworkConditionsSelector.decorateSelect(toolbarItem.selectElement());
 | 
|      return toolbarItem;
 | 
|    }
 | 
|  
 | 
| 
 |