| Index: components/gcm_driver/gcm_client_impl.cc
|
| diff --git a/components/gcm_driver/gcm_client_impl.cc b/components/gcm_driver/gcm_client_impl.cc
|
| index bd70ddf6a23bde1daeaeda2c5b482dc0de31280e..9d51a159ec74183c7f3fe2273ba29c2115004dfe 100644
|
| --- a/components/gcm_driver/gcm_client_impl.cc
|
| +++ b/components/gcm_driver/gcm_client_impl.cc
|
| @@ -478,6 +478,11 @@ void GCMClientImpl::SetLastTokenFetchTime(const base::Time& time) {
|
| weak_ptr_factory_.GetWeakPtr()));
|
| }
|
|
|
| +void GCMClientImpl::UpdateHeartbeatTimer(scoped_ptr<base::Timer> timer) {
|
| + DCHECK(mcs_client_);
|
| + mcs_client_->UpdateHeartbeatTimer(timer.Pass());
|
| +}
|
| +
|
| void GCMClientImpl::StartCheckin() {
|
| // Make sure no checkin is in progress.
|
| if (checkin_request_.get())
|
|
|