summaryrefslogtreecommitdiffstats
path: root/sync/protocol
diff options
context:
space:
mode:
authorjdonnelly <jdonnelly@chromium.org>2016-03-15 13:43:22 -0700
committerCommit bot <commit-bot@chromium.org>2016-03-15 20:50:02 +0000
commit04c8fd5e7c57f75262f477e6ac94e18ca76b6371 (patch)
tree27ee7a76cb85ebbddc5a18a4cb47b9f50c7576c7 /sync/protocol
parent6b0615b5f2dd5744a9e606ec88a9062bca934d56 (diff)
downloadchromium_src-04c8fd5e7c57f75262f477e6ac94e18ca76b6371.zip
chromium_src-04c8fd5e7c57f75262f477e6ac94e18ca76b6371.tar.gz
chromium_src-04c8fd5e7c57f75262f477e6ac94e18ca76b6371.tar.bz2
Remove kAutofillWalletSyncExperimentEnabled.
This sync experiment has been at 100% of all users for a while. Also, add the autofill_wallet type to sync/tools/testserver/chromiumsync.py. Previously, AutofillWalletDataTypeController::IsEnabled was returning false in the test environment because the sync setting was false. Now that we enable by default, the sync integration tests are covering this type. Which I assume is a good thing. BUG=594182 Review URL: https://codereview.chromium.org/1785923010 Cr-Commit-Position: refs/heads/master@{#381304}
Diffstat (limited to 'sync/protocol')
-rw-r--r--sync/protocol/experiments_specifics.proto3
-rw-r--r--sync/protocol/proto_value_conversions.cc1
2 files changed, 2 insertions, 2 deletions
diff --git a/sync/protocol/experiments_specifics.proto b/sync/protocol/experiments_specifics.proto
index 4fc0ada..e2f4ad4 100644
--- a/sync/protocol/experiments_specifics.proto
+++ b/sync/protocol/experiments_specifics.proto
@@ -73,5 +73,6 @@ message ExperimentsSpecifics {
// No longer used as of M43.
optional EnhancedBookmarksFlags obsolete_enhanced_bookmarks = 7;
optional GcmInvalidationsFlags gcm_invalidations = 8;
- optional WalletSyncFlags wallet_sync = 9;
+ // No longer used as of M51.
+ optional WalletSyncFlags obsolete_wallet_sync = 9;
}
diff --git a/sync/protocol/proto_value_conversions.cc b/sync/protocol/proto_value_conversions.cc
index 327723c..4f7d987 100644
--- a/sync/protocol/proto_value_conversions.cc
+++ b/sync/protocol/proto_value_conversions.cc
@@ -441,7 +441,6 @@ scoped_ptr<base::DictionaryValue> ExperimentsSpecificsToValue(
SET(favicon_sync, FaviconSyncFlagsToValue);
SET_EXPERIMENT_ENABLED_FIELD(gcm_channel);
SET_EXPERIMENT_ENABLED_FIELD(gcm_invalidations);
- SET_EXPERIMENT_ENABLED_FIELD(wallet_sync);
return value;
}