Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Unified Diff: sync/tools/testserver/chromiumsync.py

Issue 1785923010: Remove kAutofillWalletSyncExperimentEnabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mark wallet_sync as obsolete, remove wallet_sync_enabled. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sync/protocol/proto_value_conversions.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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),
« no previous file with comments | « sync/protocol/proto_value_conversions.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698