| Index: chrome/browser/sync/profile_sync_factory_impl.cc
 | 
| diff --git a/chrome/browser/sync/profile_sync_factory_impl.cc b/chrome/browser/sync/profile_sync_factory_impl.cc
 | 
| index 1a707ec4c6d5078d67a39935e5fe1d75916863b4..3a3bd4659b572fbbde01d5928f20c9396c255fb6 100644
 | 
| --- a/chrome/browser/sync/profile_sync_factory_impl.cc
 | 
| +++ b/chrome/browser/sync/profile_sync_factory_impl.cc
 | 
| @@ -85,9 +85,9 @@ ProfileSyncService* ProfileSyncFactoryImpl::CreateProfileSyncService() {
 | 
|          new BookmarkDataTypeController(this, profile_, pss));
 | 
|    }
 | 
|  
 | 
| -  // Extension sync is disabled by default.  Register only if
 | 
| -  // explicitly enabled.
 | 
| -  if (command_line_->HasSwitch(switches::kEnableSyncExtensions)) {
 | 
| +  // Extension sync is enabled by default.  Register unless explicitly
 | 
| +  // disabled.
 | 
| +  if (!command_line_->HasSwitch(switches::kDisableSyncExtensions)) {
 | 
|      pss->RegisterDataTypeController(
 | 
|          new ExtensionDataTypeController(this, profile_, pss));
 | 
|    }
 | 
| 
 |