| Index: sync/tools/testserver/chromiumsync.py
|
| diff --git a/sync/tools/testserver/chromiumsync.py b/sync/tools/testserver/chromiumsync.py
|
| index 459f1e10ed3d765dbee8ff050641b54f97bfb2eb..c07f84bd2e606e3d4916606bcf23c7bd7bd41ce8 100644
|
| --- a/sync/tools/testserver/chromiumsync.py
|
| +++ b/sync/tools/testserver/chromiumsync.py
|
| @@ -69,6 +69,7 @@ ALL_TYPES = (
|
| ARTICLE,
|
| AUTOFILL,
|
| AUTOFILL_PROFILE,
|
| + AUTOFILL_WALLET,
|
| AUTOFILL_WALLET_METADATA,
|
| BOOKMARK,
|
| DEVICE_INFO,
|
| @@ -93,7 +94,7 @@ ALL_TYPES = (
|
| EXTENSION_SETTINGS,
|
| FAVICON_IMAGES,
|
| FAVICON_TRACKING,
|
| - WIFI_CREDENTIAL) = range(33)
|
| + WIFI_CREDENTIAL) = range(34)
|
|
|
| # An enumeration on the frequency at which the server should send errors
|
| # to the client. This would be specified by the url that triggers the error.
|
| @@ -117,6 +118,7 @@ SYNC_TYPE_TO_DESCRIPTOR = {
|
| ARTICLE: SYNC_TYPE_FIELDS['article'],
|
| AUTOFILL: SYNC_TYPE_FIELDS['autofill'],
|
| AUTOFILL_PROFILE: SYNC_TYPE_FIELDS['autofill_profile'],
|
| + AUTOFILL_WALLET: SYNC_TYPE_FIELDS['autofill_wallet'],
|
| AUTOFILL_WALLET_METADATA: SYNC_TYPE_FIELDS['wallet_metadata'],
|
| BOOKMARK: SYNC_TYPE_FIELDS['bookmark'],
|
| DEVICE_INFO: SYNC_TYPE_FIELDS['device_info'],
|
| @@ -513,6 +515,9 @@ class SyncDataModel(object):
|
| parent_tag=ROOT_ID, sync_type=AUTOFILL),
|
| PermanentItem('google_chrome_autofill_profiles', name='Autofill Profiles',
|
| parent_tag=ROOT_ID, sync_type=AUTOFILL_PROFILE),
|
| + PermanentItem('google_chrome_autofill_wallet',
|
| + name='Autofill Wallet Items', parent_tag=ROOT_ID,
|
| + sync_type=AUTOFILL_WALLET),
|
| PermanentItem('google_chrome_autofill_wallet_metadata',
|
| name='Autofill Wallet Metadata', parent_tag=ROOT_ID,
|
| sync_type=AUTOFILL_WALLET_METADATA),
|
|
|