From: Your Name Date: Wed, 12 Oct 2022 11:41:35 +0000 Subject: WIN ADDTO Remove binary blob integrations --- components/gcm_driver/gcm_client_impl.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/gcm_driver/gcm_client_impl.cc b/components/gcm_driver/gcm_client_impl.cc --- a/components/gcm_driver/gcm_client_impl.cc +++ b/components/gcm_driver/gcm_client_impl.cc @@ -450,7 +450,7 @@ void GCMClientImpl::StartGCM() { void GCMClientImpl::InitializeMCSClient() { DCHECK(network_connection_tracker_); - return; + if ((true)) return; std::vector endpoints; endpoints.push_back(gservices_settings_.GetMCSMainEndpoint()); GURL fallback_endpoint = gservices_settings_.GetMCSFallbackEndpoint(); @@ -644,7 +644,7 @@ void GCMClientImpl::AddHeartbeatInterval(const std::string& scope, int interval_ms) { DCHECK(io_task_runner_->RunsTasksInCurrentSequence()); DCHECK(mcs_client_); - return; + if ((true)) return; mcs_client_->AddHeartbeatInterval(scope, interval_ms); } @@ -656,7 +656,7 @@ void GCMClientImpl::RemoveHeartbeatInterval(const std::string& scope) { void GCMClientImpl::StartCheckin() { DCHECK(io_task_runner_->RunsTasksInCurrentSequence()); - return; + if ((true)) return; // Make sure no checkin is in progress. if (checkin_request_) @@ -739,7 +739,7 @@ void GCMClientImpl::SetGServicesSettingsCallback(bool success) { void GCMClientImpl::SchedulePeriodicCheckin() { DCHECK(io_task_runner_->RunsTasksInCurrentSequence()); - return; + if ((true)) return; // Make sure no checkin is in progress. if (checkin_request_.get() || !device_checkin_info_.accounts_set) -- 2.25.1