| Index: chrome/browser/sync/sync_prefs.cc
|
| diff --git a/chrome/browser/sync/sync_prefs.cc b/chrome/browser/sync/sync_prefs.cc
|
| index 2ba2dd959c8e702b95e05e6b0b1606580a5ac6a3..f91a619e67a7d85eb9bab6c47b860c72845e80fd 100644
|
| --- a/chrome/browser/sync/sync_prefs.cc
|
| +++ b/chrome/browser/sync/sync_prefs.cc
|
| @@ -340,8 +340,8 @@ void SyncPrefs::RegisterPreferences() {
|
| RegisterDataTypePreferredPref(syncer::BOOKMARKS, true);
|
| for (int i = syncer::PREFERENCES; i < syncer::MODEL_TYPE_COUNT; ++i) {
|
| const syncer::ModelType type = syncer::ModelTypeFromInt(i);
|
| - // Also treat nigori specially.
|
| - if (type == syncer::NIGORI) {
|
| + // Treat these types specially.
|
| + if (IsControlType(type)) {
|
| continue;
|
| }
|
| RegisterDataTypePreferredPref(type, enable_by_default);
|
|
|