| Index: chrome/browser/google_apis/auth_service.h
|
| diff --git a/chrome/browser/google_apis/auth_service.h b/chrome/browser/google_apis/auth_service.h
|
| index 302ce881ef22df012500c66e5fe601b0ab295b71..0923ad2b662d17816ce9072ab79750b9166c00cd 100644
|
| --- a/chrome/browser/google_apis/auth_service.h
|
| +++ b/chrome/browser/google_apis/auth_service.h
|
| @@ -34,6 +34,7 @@ class AuthService : public AuthServiceInterface,
|
| //
|
| // |scopes| specifies OAuth2 scopes.
|
| AuthService(OAuth2TokenService* oauth2_token_service,
|
| + const std::string& account_id,
|
| net::URLRequestContextGetter* url_request_context_getter,
|
| const std::vector<std::string>& scopes);
|
| virtual ~AuthService();
|
| @@ -63,6 +64,7 @@ class AuthService : public AuthServiceInterface,
|
| const std::string& access_token);
|
|
|
| OAuth2TokenService* oauth2_token_service_;
|
| + std::string account_id_;
|
| net::URLRequestContextGetter* url_request_context_getter_; // Not owned.
|
| bool has_refresh_token_;
|
| std::string access_token_;
|
|
|