| 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 02ea2326fc055d2d0195123c957e87549cb1557f..3b4e96426a247b757d7799a1c3c4e8e2b60fe568 100644
|
| --- a/components/gcm_driver/gcm_client_impl.cc
|
| +++ b/components/gcm_driver/gcm_client_impl.cc
|
| @@ -300,7 +300,7 @@ void GCMClientImpl::Initialize(
|
| scoped_ptr<Encryptor> encryptor,
|
| GCMClient::Delegate* delegate) {
|
| DCHECK_EQ(UNINITIALIZED, state_);
|
| - DCHECK(url_request_context_getter);
|
| + DCHECK(url_request_context_getter.get());
|
| DCHECK(delegate);
|
|
|
| url_request_context_getter_ = url_request_context_getter;
|
| @@ -501,7 +501,7 @@ void GCMClientImpl::StartCheckin() {
|
| kDefaultBackoffPolicy,
|
| base::Bind(&GCMClientImpl::OnCheckinCompleted,
|
| weak_ptr_factory_.GetWeakPtr()),
|
| - url_request_context_getter_,
|
| + url_request_context_getter_.get(),
|
| &recorder_));
|
| // Taking a snapshot of the accounts count here, as there might be an asynch
|
| // update of the account tokens while checkin is in progress.
|
|
|