OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 #ifndef COMPONENTS_SIGNIN_IOS_BROWSER_PROFILE_OAUTH2_TOKEN_SERVICE_IOS_DELEGATE_
H_ | 4 #ifndef COMPONENTS_SIGNIN_IOS_BROWSER_PROFILE_OAUTH2_TOKEN_SERVICE_IOS_DELEGATE_
H_ |
5 #define COMPONENTS_SIGNIN_IOS_BROWSER_PROFILE_OAUTH2_TOKEN_SERVICE_IOS_DELEGATE_
H_ | 5 #define COMPONENTS_SIGNIN_IOS_BROWSER_PROFILE_OAUTH2_TOKEN_SERVICE_IOS_DELEGATE_
H_ |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
| 9 #include "base/gtest_prod_util.h" |
9 #include "base/memory/linked_ptr.h" | 10 #include "base/memory/linked_ptr.h" |
10 #include "base/threading/thread_checker.h" | 11 #include "base/threading/thread_checker.h" |
11 #include "components/signin/core/browser/signin_error_controller.h" | 12 #include "components/signin/core/browser/signin_error_controller.h" |
12 #include "google_apis/gaia/oauth2_token_service_delegate.h" | 13 #include "google_apis/gaia/oauth2_token_service_delegate.h" |
13 | 14 |
14 class AccountTrackerService; | 15 class AccountTrackerService; |
15 class ProfileOAuth2TokenServiceIOSProvider; | 16 class ProfileOAuth2TokenServiceIOSProvider; |
16 | 17 |
17 class ProfileOAuth2TokenServiceIOSDelegate : public OAuth2TokenServiceDelegate { | 18 class ProfileOAuth2TokenServiceIOSDelegate : public OAuth2TokenServiceDelegate { |
18 public: | 19 public: |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 SigninClient* client_; | 142 SigninClient* client_; |
142 ProfileOAuth2TokenServiceIOSProvider* provider_; | 143 ProfileOAuth2TokenServiceIOSProvider* provider_; |
143 AccountTrackerService* account_tracker_service_; | 144 AccountTrackerService* account_tracker_service_; |
144 | 145 |
145 // The error controller with which this instance was initialized, or NULL. | 146 // The error controller with which this instance was initialized, or NULL. |
146 SigninErrorController* signin_error_controller_; | 147 SigninErrorController* signin_error_controller_; |
147 | 148 |
148 DISALLOW_COPY_AND_ASSIGN(ProfileOAuth2TokenServiceIOSDelegate); | 149 DISALLOW_COPY_AND_ASSIGN(ProfileOAuth2TokenServiceIOSDelegate); |
149 }; | 150 }; |
150 #endif // COMPONENTS_SIGNIN_IOS_BROWSER_PROFILE_OAUTH2_TOKEN_SERVICE_IOS_DELEGA
TE_H_ | 151 #endif // COMPONENTS_SIGNIN_IOS_BROWSER_PROFILE_OAUTH2_TOKEN_SERVICE_IOS_DELEGA
TE_H_ |
OLD | NEW |