| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CHROME_BROWSER_SIGNIN_SIGNIN_GLOBAL_ERROR_H_ | 5 #ifndef CHROME_BROWSER_SIGNIN_SIGNIN_GLOBAL_ERROR_H_ |
| 6 #define CHROME_BROWSER_SIGNIN_SIGNIN_GLOBAL_ERROR_H_ | 6 #define CHROME_BROWSER_SIGNIN_SIGNIN_GLOBAL_ERROR_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 55 |
| 56 // SigninErrorController::Observer: | 56 // SigninErrorController::Observer: |
| 57 void OnErrorChanged() override; | 57 void OnErrorChanged() override; |
| 58 | 58 |
| 59 // The Profile this service belongs to. | 59 // The Profile this service belongs to. |
| 60 Profile* profile_; | 60 Profile* profile_; |
| 61 | 61 |
| 62 // The SigninErrorController that provides auth status. | 62 // The SigninErrorController that provides auth status. |
| 63 SigninErrorController* error_controller_; | 63 SigninErrorController* error_controller_; |
| 64 | 64 |
| 65 // True if signin global error was added to the global error service. | |
| 66 bool is_added_to_global_error_service_; | |
| 67 | |
| 68 DISALLOW_COPY_AND_ASSIGN(SigninGlobalError); | 65 DISALLOW_COPY_AND_ASSIGN(SigninGlobalError); |
| 69 }; | 66 }; |
| 70 | 67 |
| 71 #endif // CHROME_BROWSER_SIGNIN_SIGNIN_GLOBAL_ERROR_H_ | 68 #endif // CHROME_BROWSER_SIGNIN_SIGNIN_GLOBAL_ERROR_H_ |
| OLD | NEW |