| Index: google_apis/gaia/oauth2_token_service.cc
|
| diff --git a/google_apis/gaia/oauth2_token_service.cc b/google_apis/gaia/oauth2_token_service.cc
|
| index 72885a43f50bd14be3d3fb63fd0ba409f392b959..ed20d1356249bc0dd14b5b2ab91441024626d558 100644
|
| --- a/google_apis/gaia/oauth2_token_service.cc
|
| +++ b/google_apis/gaia/oauth2_token_service.cc
|
| @@ -5,7 +5,7 @@
|
| #include "google_apis/gaia/oauth2_token_service.h"
|
|
|
| #include <stdint.h>
|
| -
|
| +#include <utility>
|
| #include <vector>
|
|
|
| #include "base/bind.h"
|
| @@ -507,7 +507,7 @@ OAuth2TokenService::StartRequestForClientWithContext(
|
| error,
|
| std::string(),
|
| base::Time()));
|
| - return request.Pass();
|
| + return std::move(request);
|
| }
|
|
|
| RequestParameters request_parameters(client_id,
|
| @@ -529,7 +529,7 @@ OAuth2TokenService::StartRequestForClientWithContext(
|
| client_secret,
|
| scopes);
|
| }
|
| - return request.Pass();
|
| + return std::move(request);
|
| }
|
|
|
| void OAuth2TokenService::FetchOAuth2Token(RequestImpl* request,
|
|
|