Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 /* eslint-disable indent */ | 4 /* eslint-disable indent */ |
| 5 (function(window) { | 5 (function(window) { |
| 6 | 6 |
| 7 // DevToolsAPI --------------------------------------------------------------- - | 7 // DevToolsAPI --------------------------------------------------------------- - |
| 8 | 8 |
| 9 /** | 9 /** |
| 10 * @unrestricted | 10 * @unrestricted |
| (...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 860 'colorFormat', | 860 'colorFormat', |
| 861 'consoleHistory', | 861 'consoleHistory', |
| 862 'consoleTimestampsEnabled', | 862 'consoleTimestampsEnabled', |
| 863 'cpuProfilerView', | 863 'cpuProfilerView', |
| 864 'cssSourceMapsEnabled', | 864 'cssSourceMapsEnabled', |
| 865 'currentDockState', | 865 'currentDockState', |
| 866 'customColorPalette', | 866 'customColorPalette', |
| 867 'customDevicePresets', | 867 'customDevicePresets', |
| 868 'customEmulatedDeviceList', | 868 'customEmulatedDeviceList', |
| 869 'customFormatters', | 869 'customFormatters', |
| 870 'customNetworkConditions', | |
|
dgozman
2017/06/13 01:47:08
Do not touch this list - it's a snapshot of settin
chenwilliam
2017/06/13 21:54:51
Done.
| |
| 871 'customThrottlingConditions', | |
| 870 'customUserAgent', | 872 'customUserAgent', |
| 871 'databaseTableViewVisibleColumns', | 873 'databaseTableViewVisibleColumns', |
| 872 'dataGrid-cookiesTable', | 874 'dataGrid-cookiesTable', |
| 873 'dataGrid-DOMStorageItemsView', | 875 'dataGrid-DOMStorageItemsView', |
| 874 'debuggerSidebarHidden', | 876 'debuggerSidebarHidden', |
| 875 'disableDataSaverInfobar', | 877 'disableDataSaverInfobar', |
| 876 'disablePausedStateOverlay', | 878 'disablePausedStateOverlay', |
| 877 'domBreakpoints', | 879 'domBreakpoints', |
| 878 'domWordWrap', | 880 'domWordWrap', |
| 879 'elementsPanelSplitViewState', | 881 'elementsPanelSplitViewState', |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1272 * @return {boolean} | 1274 * @return {boolean} |
| 1273 */ | 1275 */ |
| 1274 DOMTokenList.prototype.toggle = function(token, force) { | 1276 DOMTokenList.prototype.toggle = function(token, force) { |
| 1275 if (arguments.length === 1) | 1277 if (arguments.length === 1) |
| 1276 force = !this.contains(token); | 1278 force = !this.contains(token); |
| 1277 return this.__originalDOMTokenListToggle(token, !!force); | 1279 return this.__originalDOMTokenListToggle(token, !!force); |
| 1278 }; | 1280 }; |
| 1279 } | 1281 } |
| 1280 | 1282 |
| 1281 })(window); | 1283 })(window); |
| OLD | NEW |