| 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 CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 void HandleCreateAccount(const base::ListValue* args); | 202 void HandleCreateAccount(const base::ListValue* args); |
| 203 void HandleAccountPickerReady(const base::ListValue* args); | 203 void HandleAccountPickerReady(const base::ListValue* args); |
| 204 void HandleLoginWebuiReady(const base::ListValue* args); | 204 void HandleLoginWebuiReady(const base::ListValue* args); |
| 205 void HandleLoginRequestNetworkState(const base::ListValue* args); | 205 void HandleLoginRequestNetworkState(const base::ListValue* args); |
| 206 void HandleLoginAddNetworkStateObserver(const base::ListValue* args); | 206 void HandleLoginAddNetworkStateObserver(const base::ListValue* args); |
| 207 void HandleLoginRemoveNetworkStateObserver(const base::ListValue* args); | 207 void HandleLoginRemoveNetworkStateObserver(const base::ListValue* args); |
| 208 void HandleSignOutUser(const base::ListValue* args); | 208 void HandleSignOutUser(const base::ListValue* args); |
| 209 void HandleUserImagesLoaded(const base::ListValue* args); | 209 void HandleUserImagesLoaded(const base::ListValue* args); |
| 210 void HandleNetworkErrorShown(const base::ListValue* args); | 210 void HandleNetworkErrorShown(const base::ListValue* args); |
| 211 void HandleOpenProxySettings(const base::ListValue* args); | 211 void HandleOpenProxySettings(const base::ListValue* args); |
| 212 void HandleLoginVisible(const base::ListValue* args); |
| 212 | 213 |
| 213 // Sends user list to account picker. | 214 // Sends user list to account picker. |
| 214 void SendUserList(bool animated); | 215 void SendUserList(bool animated); |
| 215 | 216 |
| 216 // Kick off cookie / local storage cleanup. | 217 // Kick off cookie / local storage cleanup. |
| 217 void StartClearingCookies(); | 218 void StartClearingCookies(); |
| 218 | 219 |
| 219 // Kick off DNS cache flushing. | 220 // Kick off DNS cache flushing. |
| 220 void StartClearingDnsCache(); | 221 void StartClearingDnsCache(); |
| 221 void OnDnsCleared(); | 222 void OnDnsCleared(); |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 BrowsingDataRemover* cookie_remover_; | 276 BrowsingDataRemover* cookie_remover_; |
| 276 | 277 |
| 277 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 278 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
| 278 | 279 |
| 279 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 280 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
| 280 }; | 281 }; |
| 281 | 282 |
| 282 } // namespace chromeos | 283 } // namespace chromeos |
| 283 | 284 |
| 284 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 285 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| OLD | NEW |