| Index: components/sync_driver/profile_sync_auth_provider.cc
|
| diff --git a/components/sync_driver/profile_sync_auth_provider.cc b/components/sync_driver/profile_sync_auth_provider.cc
|
| index 7a2167413a5f5452466ccb1730fa2ce6677141f0..4f269ede54ac921e0735c8f98a1d67bf6ff1e282 100644
|
| --- a/components/sync_driver/profile_sync_auth_provider.cc
|
| +++ b/components/sync_driver/profile_sync_auth_provider.cc
|
| @@ -101,14 +101,14 @@ void ProfileSyncAuthProvider::OnGetTokenSuccess(
|
| const OAuth2TokenService::Request* request,
|
| const std::string& access_token,
|
| const base::Time& expiration_time) {
|
| - DCHECK_EQ(access_token_request_, request);
|
| + DCHECK_EQ(access_token_request_.get(), request);
|
| RespondToTokenRequest(GoogleServiceAuthError::AuthErrorNone(), access_token);
|
| }
|
|
|
| void ProfileSyncAuthProvider::OnGetTokenFailure(
|
| const OAuth2TokenService::Request* request,
|
| const GoogleServiceAuthError& error) {
|
| - DCHECK_EQ(access_token_request_, request);
|
| + DCHECK_EQ(access_token_request_.get(), request);
|
| RespondToTokenRequest(error, std::string());
|
| }
|
|
|
|
|