| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 4 |
| 5 #ifndef COMPONENTS_SIGNIN_CORE_BROWSER_ABOUT_SIGNIN_INTERNALS_H_ | 5 #ifndef COMPONENTS_SIGNIN_CORE_BROWSER_ABOUT_SIGNIN_INTERNALS_H_ |
| 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_ABOUT_SIGNIN_INTERNALS_H_ | 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_ABOUT_SIGNIN_INTERNALS_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 // Weak pointer to the SigninErrorController | 203 // Weak pointer to the SigninErrorController |
| 204 SigninErrorController* signin_error_controller_; | 204 SigninErrorController* signin_error_controller_; |
| 205 | 205 |
| 206 // Weak pointer to the GaiaCookieManagerService | 206 // Weak pointer to the GaiaCookieManagerService |
| 207 GaiaCookieManagerService* cookie_manager_service_; | 207 GaiaCookieManagerService* cookie_manager_service_; |
| 208 | 208 |
| 209 // Encapsulates the actual signin and token related values. | 209 // Encapsulates the actual signin and token related values. |
| 210 // Most of the values are mirrored in the prefs for persistence. | 210 // Most of the values are mirrored in the prefs for persistence. |
| 211 SigninStatus signin_status_; | 211 SigninStatus signin_status_; |
| 212 | 212 |
| 213 ObserverList<Observer> signin_observers_; | 213 base::ObserverList<Observer> signin_observers_; |
| 214 | 214 |
| 215 DISALLOW_COPY_AND_ASSIGN(AboutSigninInternals); | 215 DISALLOW_COPY_AND_ASSIGN(AboutSigninInternals); |
| 216 }; | 216 }; |
| 217 | 217 |
| 218 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_ABOUT_SIGNIN_INTERNALS_H_ | 218 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_ABOUT_SIGNIN_INTERNALS_H_ |
| OLD | NEW |