| 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 <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 void HandleCancelUserAdding(); | 363 void HandleCancelUserAdding(); |
| 364 void HandleMigrateUserData(const std::string& password); | 364 void HandleMigrateUserData(const std::string& password); |
| 365 void HandleResyncUserData(); | 365 void HandleResyncUserData(); |
| 366 void HandleLoginUIStateChanged(const std::string& source, bool new_value); | 366 void HandleLoginUIStateChanged(const std::string& source, bool new_value); |
| 367 void HandleUnlockOnLoginSuccess(); | 367 void HandleUnlockOnLoginSuccess(); |
| 368 void HandleLoginScreenUpdate(); | 368 void HandleLoginScreenUpdate(); |
| 369 void HandleShowLoadingTimeoutError(); | 369 void HandleShowLoadingTimeoutError(); |
| 370 void HandleUpdateOfflineLogin(bool offline_login_active); | 370 void HandleUpdateOfflineLogin(bool offline_login_active); |
| 371 void HandleShowSupervisedUserCreationScreen(); | 371 void HandleShowSupervisedUserCreationScreen(); |
| 372 void HandleFocusPod(const std::string& user_id); | 372 void HandleFocusPod(const std::string& user_id); |
| 373 void HandleHardlockPod(const std::string& user_id); |
| 373 void HandleLaunchKioskApp(const std::string& app_id, bool diagnostic_mode); | 374 void HandleLaunchKioskApp(const std::string& app_id, bool diagnostic_mode); |
| 374 void HandleRetrieveAuthenticatedUserEmail(double attempt_token); | 375 void HandleRetrieveAuthenticatedUserEmail(double attempt_token); |
| 375 void HandleGetPublicSessionKeyboardLayouts(const std::string& user_id, | 376 void HandleGetPublicSessionKeyboardLayouts(const std::string& user_id, |
| 376 const std::string& locale); | 377 const std::string& locale); |
| 377 void HandleCancelConsumerManagementEnrollment(); | 378 void HandleCancelConsumerManagementEnrollment(); |
| 378 | 379 |
| 379 // Sends the list of |keyboard_layouts| available for the |locale| that is | 380 // Sends the list of |keyboard_layouts| available for the |locale| that is |
| 380 // currently selected for the public session identified by |user_id|. | 381 // currently selected for the public session identified by |user_id|. |
| 381 void SendPublicSessionKeyboardLayouts( | 382 void SendPublicSessionKeyboardLayouts( |
| 382 const std::string& user_id, | 383 const std::string& user_id, |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 bool is_enrolling_consumer_management_; | 492 bool is_enrolling_consumer_management_; |
| 492 | 493 |
| 493 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 494 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
| 494 | 495 |
| 495 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 496 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
| 496 }; | 497 }; |
| 497 | 498 |
| 498 } // namespace chromeos | 499 } // namespace chromeos |
| 499 | 500 |
| 500 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 501 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| OLD | NEW |