| 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 26747b30ec3c08b2b5f74b28dfc43631a0b75ac8..586ed14377dcebf7b6ffb3bf4618bc80220cb0d6 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkPanel.js
|
| @@ -170,9 +170,9 @@ Network.NetworkPanel = class extends UI.Panel {
|
| 'change', this._onPreserveLogCheckboxChanged.bind(this), false);
|
| this._panelToolbar.appendToolbarItem(this._preserveLogCheckbox);
|
|
|
| - this._disableCacheCheckbox = new UI.ToolbarCheckbox(
|
| - Common.UIString('Disable cache'), Common.UIString('Disable cache (while DevTools is open)'),
|
| - Common.moduleSetting('cacheDisabled'));
|
| + this._disableCacheCheckbox = new UI.ToolbarSettingCheckbox(
|
| + Common.moduleSetting('cacheDisabled'), Common.UIString('Disable cache (while DevTools is open)'),
|
| + Common.UIString('Disable cache'));
|
| this._panelToolbar.appendToolbarItem(this._disableCacheCheckbox);
|
|
|
| this._panelToolbar.appendSeparator();
|
|
|