| Index: chrome/browser/sync/profile_sync_service.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service.cc b/chrome/browser/sync/profile_sync_service.cc
|
| index 11db8f4106660f5402e3b6498764a832a6beaed3..4a32e2451c3e01221085051b80d7f3af08e7ac33 100644
|
| --- a/chrome/browser/sync/profile_sync_service.cc
|
| +++ b/chrome/browser/sync/profile_sync_service.cc
|
| @@ -1288,6 +1288,7 @@ void ProfileSyncService::UpdateSelectedTypesHistogram(
|
| syncer::EXTENSIONS,
|
| syncer::PASSWORDS,
|
| syncer::PREFERENCES,
|
| + syncer::PUSH_NOTIFICATIONS,
|
| syncer::SESSIONS,
|
| syncer::THEMES,
|
| syncer::TYPED_URLS
|
| @@ -1301,12 +1302,13 @@ void ProfileSyncService::UpdateSelectedTypesHistogram(
|
| browser_sync::user_selectable_type::EXTENSIONS,
|
| browser_sync::user_selectable_type::PASSWORDS,
|
| browser_sync::user_selectable_type::PREFERENCES,
|
| + browser_sync::user_selectable_type::PUSH_NOTIFICATIONS,
|
| browser_sync::user_selectable_type::SESSIONS,
|
| browser_sync::user_selectable_type::THEMES,
|
| browser_sync::user_selectable_type::TYPED_URLS
|
| };
|
|
|
| - COMPILE_ASSERT(20 == syncer::MODEL_TYPE_COUNT, UpdateCustomConfigHistogram);
|
| + COMPILE_ASSERT(21 == syncer::MODEL_TYPE_COUNT, UpdateCustomConfigHistogram);
|
| COMPILE_ASSERT(arraysize(model_types) ==
|
| browser_sync::user_selectable_type::SELECTABLE_DATATYPE_COUNT,
|
| UpdateCustomConfigHistogram);
|
|
|