| Index: chrome/browser/resources/options/browser_options.js
|
| diff --git a/chrome/browser/resources/options/browser_options.js b/chrome/browser/resources/options/browser_options.js
|
| index 1bc711f8e33eaccc7c1fde4d77f5493a1b866c1f..dcba6fad3f3e7e9cf389b00f43f992ad2144d3d8 100644
|
| --- a/chrome/browser/resources/options/browser_options.js
|
| +++ b/chrome/browser/resources/options/browser_options.js
|
| @@ -1523,6 +1523,15 @@ cr.define('options', function() {
|
| },
|
|
|
| /**
|
| + * Enables or disables the ChromeOS display settings button.
|
| + * @private
|
| + */
|
| + enableDisplayButton_: function(enabled) {
|
| + if (cr.isChromeOS)
|
| + $('display-options').disabled = !enabled;
|
| + },
|
| +
|
| + /**
|
| * Enables factory reset section.
|
| * @private
|
| */
|
| @@ -1946,6 +1955,7 @@ cr.define('options', function() {
|
| 'addBluetoothDevice',
|
| 'deleteCurrentProfile',
|
| 'enableCertificateButton',
|
| + 'enableDisplayButton',
|
| 'enableFactoryResetSection',
|
| 'getCurrentProfile',
|
| 'getStartStopSyncButton',
|
|
|