| 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 void HandleShowLoadingTimeoutError(); | 352 void HandleShowLoadingTimeoutError(); |
| 353 void HandleUpdateOfflineLogin(bool offline_login_active); | 353 void HandleUpdateOfflineLogin(bool offline_login_active); |
| 354 void HandleShowSupervisedUserCreationScreen(); | 354 void HandleShowSupervisedUserCreationScreen(); |
| 355 void HandleFocusPod(const std::string& user_id); | 355 void HandleFocusPod(const std::string& user_id); |
| 356 void HandleHardlockPod(const std::string& user_id); | 356 void HandleHardlockPod(const std::string& user_id); |
| 357 void HandleLaunchKioskApp(const std::string& app_id, bool diagnostic_mode); | 357 void HandleLaunchKioskApp(const std::string& app_id, bool diagnostic_mode); |
| 358 void HandleGetPublicSessionKeyboardLayouts(const std::string& user_id, | 358 void HandleGetPublicSessionKeyboardLayouts(const std::string& user_id, |
| 359 const std::string& locale); | 359 const std::string& locale); |
| 360 void HandleCancelConsumerManagementEnrollment(); | 360 void HandleCancelConsumerManagementEnrollment(); |
| 361 void HandleGetTouchViewState(); | 361 void HandleGetTouchViewState(); |
| 362 void HandleLogRemoveUserWarningShown(); |
| 362 | 363 |
| 363 // Sends the list of |keyboard_layouts| available for the |locale| that is | 364 // Sends the list of |keyboard_layouts| available for the |locale| that is |
| 364 // currently selected for the public session identified by |user_id|. | 365 // currently selected for the public session identified by |user_id|. |
| 365 void SendPublicSessionKeyboardLayouts( | 366 void SendPublicSessionKeyboardLayouts( |
| 366 const std::string& user_id, | 367 const std::string& user_id, |
| 367 const std::string& locale, | 368 const std::string& locale, |
| 368 scoped_ptr<base::ListValue> keyboard_layouts); | 369 scoped_ptr<base::ListValue> keyboard_layouts); |
| 369 | 370 |
| 370 // Returns true iff | 371 // Returns true iff |
| 371 // (i) log in is restricted to some user list, | 372 // (i) log in is restricted to some user list, |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 scoped_ptr<ErrorScreensHistogramHelper> histogram_helper_; | 484 scoped_ptr<ErrorScreensHistogramHelper> histogram_helper_; |
| 484 | 485 |
| 485 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 486 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
| 486 | 487 |
| 487 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 488 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
| 488 }; | 489 }; |
| 489 | 490 |
| 490 } // namespace chromeos | 491 } // namespace chromeos |
| 491 | 492 |
| 492 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 493 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| OLD | NEW |