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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 // WebUI message handlers. | 279 // WebUI message handlers. |
280 void HandleCompleteLogin(const base::ListValue* args); | 280 void HandleCompleteLogin(const base::ListValue* args); |
281 void HandleGetUsers(const base::ListValue* args); | 281 void HandleGetUsers(const base::ListValue* args); |
282 void HandleAuthenticateUser(const base::ListValue* args); | 282 void HandleAuthenticateUser(const base::ListValue* args); |
283 void HandleLaunchDemoUser(const base::ListValue* args); | 283 void HandleLaunchDemoUser(const base::ListValue* args); |
284 void HandleLaunchIncognito(const base::ListValue* args); | 284 void HandleLaunchIncognito(const base::ListValue* args); |
285 void HandleLaunchPublicAccount(const base::ListValue* args); | 285 void HandleLaunchPublicAccount(const base::ListValue* args); |
286 void HandleOfflineLogin(const base::ListValue* args); | 286 void HandleOfflineLogin(const base::ListValue* args); |
287 void HandleShutdownSystem(const base::ListValue* args); | 287 void HandleShutdownSystem(const base::ListValue* args); |
288 void HandleLoadWallpaper(const base::ListValue* args); | 288 void HandleLoadWallpaper(const base::ListValue* args); |
| 289 void HandleRebootSystem(const base::ListValue* args); |
289 void HandleRemoveUser(const base::ListValue* args); | 290 void HandleRemoveUser(const base::ListValue* args); |
290 void HandleShowAddUser(const base::ListValue* args); | 291 void HandleShowAddUser(const base::ListValue* args); |
291 void HandleToggleEnrollmentScreen(const base::ListValue* args); | 292 void HandleToggleEnrollmentScreen(const base::ListValue* args); |
292 void HandleToggleResetScreen(const base::ListValue* args); | 293 void HandleToggleResetScreen(const base::ListValue* args); |
293 void HandleLaunchHelpApp(const base::ListValue* args); | 294 void HandleLaunchHelpApp(const base::ListValue* args); |
294 void HandleCreateAccount(const base::ListValue* args); | 295 void HandleCreateAccount(const base::ListValue* args); |
295 void HandleAccountPickerReady(const base::ListValue* args); | 296 void HandleAccountPickerReady(const base::ListValue* args); |
296 void HandleWallpaperReady(const base::ListValue* args); | 297 void HandleWallpaperReady(const base::ListValue* args); |
297 void HandleLoginWebuiReady(const base::ListValue* args); | 298 void HandleLoginWebuiReady(const base::ListValue* args); |
298 void HandleDemoWebuiReady(const base::ListValue* args); | 299 void HandleDemoWebuiReady(const base::ListValue* args); |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 // NOTIFICATION_AUTH_NEEDED and reset on either NOTIFICATION_AUTH_SUPPLIED or | 436 // NOTIFICATION_AUTH_NEEDED and reset on either NOTIFICATION_AUTH_SUPPLIED or |
436 // NOTIFICATION_AUTH_CANCELLED. | 437 // NOTIFICATION_AUTH_CANCELLED. |
437 bool has_pending_auth_ui_; | 438 bool has_pending_auth_ui_; |
438 | 439 |
439 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 440 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
440 }; | 441 }; |
441 | 442 |
442 } // namespace chromeos | 443 } // namespace chromeos |
443 | 444 |
444 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 445 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
OLD | NEW |