| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 // "data": [List of {"service" : service name, | 144 // "data": [List of {"service" : service name, |
| 145 // "scopes" : requested scoped, | 145 // "scopes" : requested scoped, |
| 146 // "request_time" : request time, | 146 // "request_time" : request time, |
| 147 // "status" : request status} elems] | 147 // "status" : request status} elems] |
| 148 // }], | 148 // }], |
| 149 // } | 149 // } |
| 150 scoped_ptr<base::DictionaryValue> ToValue( | 150 scoped_ptr<base::DictionaryValue> ToValue( |
| 151 AccountTrackerService* account_tracker, | 151 AccountTrackerService* account_tracker, |
| 152 SigninManagerBase* signin_manager, | 152 SigninManagerBase* signin_manager, |
| 153 SigninErrorController* signin_error_controller, | 153 SigninErrorController* signin_error_controller, |
| 154 ProfileOAuth2TokenService* token_service, |
| 154 const std::string& product_version); | 155 const std::string& product_version); |
| 155 }; | 156 }; |
| 156 | 157 |
| 157 // SigninManager::SigninDiagnosticsObserver implementation. | 158 // SigninManager::SigninDiagnosticsObserver implementation. |
| 158 void NotifySigninValueChanged( | 159 void NotifySigninValueChanged( |
| 159 const signin_internals_util::TimedSigninStatusField& field, | 160 const signin_internals_util::TimedSigninStatusField& field, |
| 160 const std::string& value) override; | 161 const std::string& value) override; |
| 161 | 162 |
| 162 // OAuth2TokenService::DiagnosticsObserver implementations. | 163 // OAuth2TokenService::DiagnosticsObserver implementations. |
| 163 void OnAccessTokenRequested( | 164 void OnAccessTokenRequested( |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 | 223 |
| 223 ObserverList<Observer> signin_observers_; | 224 ObserverList<Observer> signin_observers_; |
| 224 | 225 |
| 225 scoped_ptr<SigninClient::CookieChangedSubscription> | 226 scoped_ptr<SigninClient::CookieChangedSubscription> |
| 226 cookie_changed_subscription_; | 227 cookie_changed_subscription_; |
| 227 | 228 |
| 228 DISALLOW_COPY_AND_ASSIGN(AboutSigninInternals); | 229 DISALLOW_COPY_AND_ASSIGN(AboutSigninInternals); |
| 229 }; | 230 }; |
| 230 | 231 |
| 231 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_ABOUT_SIGNIN_INTERNALS_H_ | 232 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_ABOUT_SIGNIN_INTERNALS_H_ |
| OLD | NEW |