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 <memory> | 9 #include <memory> |
10 #include <set> | 10 #include <set> |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 void HandleResyncUserData(); | 370 void HandleResyncUserData(); |
371 void HandleLoginUIStateChanged(const std::string& source, bool active); | 371 void HandleLoginUIStateChanged(const std::string& source, bool active); |
372 void HandleUnlockOnLoginSuccess(); | 372 void HandleUnlockOnLoginSuccess(); |
373 void HandleLoginScreenUpdate(); | 373 void HandleLoginScreenUpdate(); |
374 void HandleShowLoadingTimeoutError(); | 374 void HandleShowLoadingTimeoutError(); |
375 void HandleShowSupervisedUserCreationScreen(); | 375 void HandleShowSupervisedUserCreationScreen(); |
376 void HandleFocusPod(const AccountId& account_id); | 376 void HandleFocusPod(const AccountId& account_id); |
377 void HandleHardlockPod(const std::string& user_id); | 377 void HandleHardlockPod(const std::string& user_id); |
378 void HandleLaunchKioskApp(const AccountId& app_account_id, | 378 void HandleLaunchKioskApp(const AccountId& app_account_id, |
379 bool diagnostic_mode); | 379 bool diagnostic_mode); |
| 380 void HandleLaunchArcKioskApp(const AccountId& app_account_id); |
380 void HandleGetPublicSessionKeyboardLayouts(const AccountId& account_id, | 381 void HandleGetPublicSessionKeyboardLayouts(const AccountId& account_id, |
381 const std::string& locale); | 382 const std::string& locale); |
382 void HandleGetTouchViewState(); | 383 void HandleGetTouchViewState(); |
383 void HandleLogRemoveUserWarningShown(); | 384 void HandleLogRemoveUserWarningShown(); |
384 void HandleFirstIncorrectPasswordAttempt(const AccountId& account_id); | 385 void HandleFirstIncorrectPasswordAttempt(const AccountId& account_id); |
385 void HandleMaxIncorrectPasswordAttempts(const AccountId& account_id); | 386 void HandleMaxIncorrectPasswordAttempts(const AccountId& account_id); |
386 void HandleSendFeedbackAndResyncUserData(); | 387 void HandleSendFeedbackAndResyncUserData(); |
387 | 388 |
388 // Sends the list of |keyboard_layouts| available for the |locale| that is | 389 // Sends the list of |keyboard_layouts| available for the |locale| that is |
389 // currently selected for the public session identified by |user_id|. | 390 // currently selected for the public session identified by |user_id|. |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 std::unique_ptr<LoginFeedback> login_feedback_; | 509 std::unique_ptr<LoginFeedback> login_feedback_; |
509 | 510 |
510 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 511 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
511 | 512 |
512 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 513 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
513 }; | 514 }; |
514 | 515 |
515 } // namespace chromeos | 516 } // namespace chromeos |
516 | 517 |
517 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 518 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
OLD | NEW |