summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/profile_sync_factory_impl.cc
diff options
context:
space:
mode:
authortim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-21 23:11:57 +0000
committertim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-21 23:11:57 +0000
commit3a8d2de3be5629f532f4b26a4ddb7c0961cb25d7 (patch)
tree267401c3af60f1cb901af38708318e5be2b4dfc0 /chrome/browser/sync/profile_sync_factory_impl.cc
parent45e9e90c4c7b6cb70f1cfdb647b726fcdbd5e9fa (diff)
downloadchromium_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/browser/sync/profile_sync_factory_impl.cc')
-rw-r--r--chrome/browser/sync/profile_sync_factory_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/sync/profile_sync_factory_impl.cc b/chrome/browser/sync/profile_sync_factory_impl.cc
index ed8f429..2585f71 100644
--- a/chrome/browser/sync/profile_sync_factory_impl.cc
+++ b/chrome/browser/sync/profile_sync_factory_impl.cc
@@ -111,7 +111,7 @@ ProfileSyncService* ProfileSyncFactoryImpl::CreateProfileSyncService(
// Password sync is disabled by default. Register only if
// explicitly enabled.
- if (command_line_->HasSwitch(switches::kEnableSyncPasswords)) {
+ if (!command_line_->HasSwitch(switches::kDisableSyncPasswords)) {
pss->RegisterDataTypeController(
new PasswordDataTypeController(this, profile_, pss));
}