forked from kiss-community/repo
29 lines
911 B
Diff
29 lines
911 B
Diff
# Disable Google Cloud Messaging (GCM) client
|
|
|
|
--- a/components/gcm_driver/gcm_client_impl.cc
|
|
+++ b/components/gcm_driver/gcm_client_impl.cc
|
|
@@ -496,6 +496,7 @@ void GCMClientImpl::StartGCM() {
|
|
|
|
void GCMClientImpl::InitializeMCSClient() {
|
|
DCHECK(network_connection_tracker_);
|
|
+ return;
|
|
std::vector<GURL> endpoints;
|
|
endpoints.push_back(gservices_settings_.GetMCSMainEndpoint());
|
|
GURL fallback_endpoint = gservices_settings_.GetMCSFallbackEndpoint();
|
|
@@ -685,6 +686,7 @@ void GCMClientImpl::RemoveHeartbeatInter
|
|
}
|
|
|
|
void GCMClientImpl::StartCheckin() {
|
|
+ return;
|
|
// Make sure no checkin is in progress.
|
|
if (checkin_request_)
|
|
return;
|
|
@@ -760,6 +762,7 @@ void GCMClientImpl::SetGServicesSettings
|
|
}
|
|
|
|
void GCMClientImpl::SchedulePeriodicCheckin() {
|
|
+ return;
|
|
// Make sure no checkin is in progress.
|
|
if (checkin_request_.get() || !device_checkin_info_.accounts_set)
|
|
return;
|