| Index: chrome/browser/resources/options2/browser_options.js
|
| diff --git a/chrome/browser/resources/options2/browser_options.js b/chrome/browser/resources/options2/browser_options.js
|
| index f9190c6c1a9c079c47dd3345b6424e7ed73afe5a..163e8c3c077f930b6e313f2c8d72e1d87015560b 100644
|
| --- a/chrome/browser/resources/options2/browser_options.js
|
| +++ b/chrome/browser/resources/options2/browser_options.js
|
| @@ -1048,6 +1048,17 @@ cr.define('options', function() {
|
| },
|
|
|
| /**
|
| + * Set the visibility of the password generation checkbox.
|
| + * @private
|
| + */
|
| + setPasswordGenerationSettingVisibility_: function(visible) {
|
| + if (visible)
|
| + $('password-generation-checkbox').style.display = 'block';
|
| + else
|
| + $('password-generation-checkbox').style.display = 'none';
|
| + },
|
| +
|
| + /**
|
| * Set the font size selected item.
|
| * @private
|
| */
|
| @@ -1347,6 +1358,7 @@ cr.define('options', function() {
|
| 'setInstantFieldTrialStatus',
|
| 'setMetricsReportingCheckboxState',
|
| 'setMetricsReportingSettingVisibility',
|
| + 'setPasswordGenerationSettingVisibility',
|
| 'setProfilesInfo',
|
| 'setScreenMagnifierCheckboxState',
|
| 'setSpokenFeedbackCheckboxState',
|
|
|