diff options
author | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 23:11:57 +0000 |
---|---|---|
committer | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 23:11:57 +0000 |
commit | 3a8d2de3be5629f532f4b26a4ddb7c0961cb25d7 (patch) | |
tree | 267401c3af60f1cb901af38708318e5be2b4dfc0 /chrome/common/chrome_switches.cc | |
parent | 45e9e90c4c7b6cb70f1cfdb647b726fcdbd5e9fa (diff) | |
download | chromium_src-3a8d2de3be5629f532f4b26a4ddb7c0961cb25d7.zip chromium_src-3a8d2de3be5629f532f4b26a4ddb7c0961cb25d7.tar.gz chromium_src-3a8d2de3be5629f532f4b26a4ddb7c0961cb25d7.tar.bz2 |
sync: enable password sync by default.
BUG=none
TEST=Enable sync, notice passwords is an option / enabled. unit_tests
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=63223
Review URL: http://codereview.chromium.org/3913005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63447 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 987a460..e2e36b5 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -293,6 +293,9 @@ const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; // Disable syncing of extensions. const char kDisableSyncExtensions[] = "disable-sync-extensions"; +// Disable syncing browser passwords. +const char kDisableSyncPasswords[] = "disable-sync-passwords"; + // Disable syncing of preferences. const char kDisableSyncPreferences[] = "disable-sync-preferences"; @@ -489,9 +492,6 @@ const char kEnableSync[] = "enable-sync"; // Enable syncing browser autofill. const char kEnableSyncAutofill[] = "enable-sync-autofill"; -// Enable syncing browser passwords. -const char kEnableSyncPasswords[] = "enable-sync-passwords"; - // Enable syncing browser sessions. const char kEnableSyncSessions[] = "enable-sync-sessions"; |