| Index: chrome/service/cloud_print/cloud_print_auth.cc
|
| diff --git a/chrome/service/cloud_print/cloud_print_auth.cc b/chrome/service/cloud_print/cloud_print_auth.cc
|
| index 5f7c57e4e9da7ea78f499c5c9385dc7d8e7afb15..14681349b45f1612059160c6c5efd0b21389b324 100644
|
| --- a/chrome/service/cloud_print/cloud_print_auth.cc
|
| +++ b/chrome/service/cloud_print/cloud_print_auth.cc
|
| @@ -107,8 +107,10 @@ void CloudPrintAuth::RefreshAccessToken() {
|
| oauth_client_.reset(new gaia::GaiaOAuthClient(
|
| GaiaUrls::GetInstance()->oauth2_token_url(),
|
| g_service_process->GetServiceURLRequestContextGetter()));
|
| + std::vector<std::string> empty_scope_list; // (Use scope from refresh token.)
|
| oauth_client_->RefreshToken(oauth_client_info_,
|
| refresh_token_,
|
| + empty_scope_list,
|
| kCloudPrintAuthMaxRetryCount,
|
| this);
|
| }
|
|
|