Chromium Code Reviews| Index: chrome/browser/sync/profile_sync_components_factory_impl.cc |
| diff --git a/chrome/browser/sync/profile_sync_components_factory_impl.cc b/chrome/browser/sync/profile_sync_components_factory_impl.cc |
| index 70dc4cd78eeae13d3438215cbf14e3bd21b34d4f..41c3f0814dc9f5c2655ad2c319dd887eae491db4 100644 |
| --- a/chrome/browser/sync/profile_sync_components_factory_impl.cc |
| +++ b/chrome/browser/sync/profile_sync_components_factory_impl.cc |
| @@ -161,9 +161,9 @@ void ProfileSyncComponentsFactoryImpl::RegisterDataTypes( |
| new SessionDataTypeController(this, profile_, pss)); |
| } |
| - // Extension setting sync is disabled by default. Register only if |
| - // explicitly enabled. |
| - if (command_line_->HasSwitch(switches::kEnableSyncExtensionSettings)) { |
| + // Extension and app setting sync is disabled by default. Register unless |
|
akalin
2012/02/28 08:01:42
disabled -> enabled
not at google - send to devlin
2012/02/28 08:11:54
Done.
|
| + // explicitly disabled. |
| + if (!command_line_->HasSwitch(switches::kDisableSyncExtensionSettings)) { |
| pss->RegisterDataTypeController( |
| new ExtensionSettingDataTypeController( |
| syncable::EXTENSION_SETTINGS, this, profile_, pss)); |