| 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..d0f4cdd0b8f18959b8b019858b9733082d64e8c8 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,8 @@ 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)'));
|
| this._panelToolbar.appendToolbarItem(this._disableCacheCheckbox);
|
|
|
| this._panelToolbar.appendSeparator();
|
|
|