diff options
author | binji@chromium.org <binji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-15 01:29:06 +0000 |
---|---|---|
committer | binji@chromium.org <binji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-15 01:29:06 +0000 |
commit | f3e6a1458a65a74527e867dd37b511c7d902f8e4 (patch) | |
tree | f793be7922890bcccfe1717b542a50166c7147f4 | |
parent | d132ce8305fe69a040be0d97c8dbd68ac9caa07a (diff) | |
download | chromium_src-f3e6a1458a65a74527e867dd37b511c7d902f8e4.zip chromium_src-f3e6a1458a65a74527e867dd37b511c7d902f8e4.tar.gz chromium_src-f3e6a1458a65a74527e867dd37b511c7d902f8e4.tar.bz2 |
Sync Setup UI: Default value of encryption settings is 'Encrypt passwords'
BUG=91679
TEST=manual
Review URL: http://codereview.chromium.org/7621052
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101216 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/resources/sync_setup_overlay.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/resources/sync_setup_overlay.js b/chrome/browser/resources/sync_setup_overlay.js index 438a08f..40db39e 100644 --- a/chrome/browser/resources/sync_setup_overlay.js +++ b/chrome/browser/resources/sync_setup_overlay.js @@ -454,6 +454,9 @@ cr.define('options', function() { // The default state is to sync everything. this.setCheckboxesToKeepEverythingSynced_(true); + // Reset encryption settings to 'Encrypt passwords' + $('encrypt-sensitive-option').checked = true; + // If the account is not synced with a custom passphrase, reset the // passphrase radio when switching to the 'Sync everything' page. if (!this.usePassphrase_) { |