| 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_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 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 void HandleShowAddUser(const base::ListValue* args); | 352 void HandleShowAddUser(const base::ListValue* args); |
| 353 void HandleToggleEnrollmentScreen(); | 353 void HandleToggleEnrollmentScreen(); |
| 354 void HandleToggleKioskEnableScreen(); | 354 void HandleToggleKioskEnableScreen(); |
| 355 void HandleToggleResetScreen(); | 355 void HandleToggleResetScreen(); |
| 356 void HandleToggleKioskAutolaunchScreen(); | 356 void HandleToggleKioskAutolaunchScreen(); |
| 357 void HandleCreateAccount(); | 357 void HandleCreateAccount(); |
| 358 void HandleAccountPickerReady(); | 358 void HandleAccountPickerReady(); |
| 359 void HandleWallpaperReady(); | 359 void HandleWallpaperReady(); |
| 360 void HandleLoginWebuiReady(); | 360 void HandleLoginWebuiReady(); |
| 361 void HandleSignOutUser(); | 361 void HandleSignOutUser(); |
| 362 void HandleNetworkErrorShown(); | |
| 363 void HandleOpenProxySettings(); | 362 void HandleOpenProxySettings(); |
| 364 void HandleLoginVisible(const std::string& source); | 363 void HandleLoginVisible(const std::string& source); |
| 365 void HandleCancelPasswordChangedFlow(); | 364 void HandleCancelPasswordChangedFlow(); |
| 366 void HandleCancelUserAdding(); | 365 void HandleCancelUserAdding(); |
| 367 void HandleMigrateUserData(const std::string& password); | 366 void HandleMigrateUserData(const std::string& password); |
| 368 void HandleResyncUserData(); | 367 void HandleResyncUserData(); |
| 369 void HandleLoginUIStateChanged(const std::string& source, bool new_value); | 368 void HandleLoginUIStateChanged(const std::string& source, bool new_value); |
| 370 void HandleUnlockOnLoginSuccess(); | 369 void HandleUnlockOnLoginSuccess(); |
| 371 void HandleLoginScreenUpdate(); | 370 void HandleLoginScreenUpdate(); |
| 372 void HandleShowLoadingTimeoutError(); | 371 void HandleShowLoadingTimeoutError(); |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 | 543 |
| 545 // Helper that retrieves the authenticated user's e-mail address. | 544 // Helper that retrieves the authenticated user's e-mail address. |
| 546 scoped_ptr<AuthenticatedUserEmailRetriever> email_retriever_; | 545 scoped_ptr<AuthenticatedUserEmailRetriever> email_retriever_; |
| 547 | 546 |
| 548 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 547 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
| 549 }; | 548 }; |
| 550 | 549 |
| 551 } // namespace chromeos | 550 } // namespace chromeos |
| 552 | 551 |
| 553 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 552 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| OLD | NEW |