Chromium Code Reviews| Index: chrome/browser/sync/profile_sync_service_android.cc |
| diff --git a/chrome/browser/sync/profile_sync_service_android.cc b/chrome/browser/sync/profile_sync_service_android.cc |
| index 039878f81233741543ccc9bf2c5f3dd4ba6c959e..c7350a8cc0b5ee78c1b59fbc731a273b5c19b814 100644 |
| --- a/chrome/browser/sync/profile_sync_service_android.cc |
| +++ b/chrome/browser/sync/profile_sync_service_android.cc |
| @@ -64,6 +64,7 @@ enum ModelTypeSelection { |
| EXPERIMENTS = 1 << 12, |
| SUPERVISED_USER_SETTING = 1 << 13, |
| SUPERVISED_USER_WHITELIST = 1 << 14, |
| + AUTOFILL_WALLET = 1 << 15, |
|
nyquist
2015/03/26 00:07:01
Any reason why this isn't called AUTOFILL_WALLET_D
Nicolas Zea
2015/03/26 00:09:33
I think it needs to match the notification type, w
|
| }; |
| } // namespace |
| @@ -461,6 +462,9 @@ jlong ProfileSyncServiceAndroid::ModelTypeSetToSelection( |
| if (types.Has(syncer::AUTOFILL_PROFILE)) { |
| model_type_selection |= AUTOFILL_PROFILE; |
| } |
| + if (types.Has(syncer::AUTOFILL_WALLET_DATA)) { |
| + model_type_selection |= AUTOFILL_WALLET; |
| + } |
| if (types.Has(syncer::PASSWORDS)) { |
| model_type_selection |= PASSWORD; |
| } |