Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2537)

Unified Diff: chrome/browser/resources/options2/browser_options.js

Issue 10222017: Make password generation switched by a preference in chrome settings rather than a command line fla… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changes from reviews. Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 96b856e7466017931d7bd1fa6575046858e0dbde..27d92155c7dd17555c3fdada805920ac94ef9a32 100644
--- a/chrome/browser/resources/options2/browser_options.js
+++ b/chrome/browser/resources/options2/browser_options.js
@@ -1041,6 +1041,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
*/
@@ -1370,6 +1381,7 @@ cr.define('options', function() {
'setInstantFieldTrialStatus',
'setMetricsReportingCheckboxState',
'setMetricsReportingSettingVisibility',
+ 'setPasswordGenerationSettingVisibility',
'setProfilesInfo',
'setScreenMagnifierCheckboxState',
'setSpokenFeedbackCheckboxState',

Powered by Google App Engine
This is Rietveld 408576698