summaryrefslogtreecommitdiffstats
path: root/components/invalidation
diff options
context:
space:
mode:
authorpavely <pavely@chromium.org>2014-10-14 12:40:09 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-14 19:40:47 +0000
commit4f353d32856705a1ee2afde4c47b32a5fee86b45 (patch)
treed7f8a12623192d0f87c48942e06d2013361c2c39 /components/invalidation
parentc2ca458189c86d743b82de49e8a8a0c38bb38996 (diff)
downloadchromium_src-4f353d32856705a1ee2afde4c47b32a5fee86b45.zip
chromium_src-4f353d32856705a1ee2afde4c47b32a5fee86b45.tar.gz
chromium_src-4f353d32856705a1ee2afde4c47b32a5fee86b45.tar.bz2
Chrome should use GCM for invalidations by default.
Now that invalidations over GCM are enabled for all users it is time to make that default. With this change Chrome will use GCM for invalidations and only switch to XMPP explicitly as a result of sync experiment setting. BUG=422374 R=zea@chromium.org Review URL: https://codereview.chromium.org/654643004 Cr-Commit-Position: refs/heads/master@{#299525}
Diffstat (limited to 'components/invalidation')
-rw-r--r--components/invalidation/ticl_invalidation_service.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/invalidation/ticl_invalidation_service.cc b/components/invalidation/ticl_invalidation_service.cc
index 03dd30e..7fe5aee 100644
--- a/components/invalidation/ticl_invalidation_service.cc
+++ b/components/invalidation/ticl_invalidation_service.cc
@@ -63,7 +63,7 @@ TiclInvalidationService::TiclInvalidationService(
settings_provider_(settings_provider.Pass()),
invalidator_registrar_(new syncer::InvalidatorRegistrar()),
request_access_token_backoff_(&kRequestAccessTokenBackoffPolicy),
- network_channel_type_(PUSH_CLIENT_CHANNEL),
+ network_channel_type_(GCM_NETWORK_CHANNEL),
gcm_driver_(gcm_driver),
request_context_(request_context),
logger_() {}