OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 virtual void BeforeSessionStart() OVERRIDE; | 63 virtual void BeforeSessionStart() OVERRIDE; |
64 virtual void Finalize() OVERRIDE; | 64 virtual void Finalize() OVERRIDE; |
65 virtual void OnCompleteLogin() OVERRIDE; | 65 virtual void OnCompleteLogin() OVERRIDE; |
66 virtual void OpenProxySettings() OVERRIDE; | 66 virtual void OpenProxySettings() OVERRIDE; |
67 virtual void SetStatusAreaVisible(bool visible) OVERRIDE; | 67 virtual void SetStatusAreaVisible(bool visible) OVERRIDE; |
68 virtual void CheckForAutoEnrollment() OVERRIDE; | 68 virtual void CheckForAutoEnrollment() OVERRIDE; |
69 virtual void GetAutoEnrollmentCheckResult( | 69 virtual void GetAutoEnrollmentCheckResult( |
70 const GetAutoEnrollmentCheckResultCallback& callback) OVERRIDE; | 70 const GetAutoEnrollmentCheckResultCallback& callback) OVERRIDE; |
71 virtual void StartWizard( | 71 virtual void StartWizard( |
72 const std::string& first_screen_name, | 72 const std::string& first_screen_name, |
73 scoped_ptr<DictionaryValue> screen_parameters) OVERRIDE; | 73 scoped_ptr<base::DictionaryValue> screen_parameters) OVERRIDE; |
74 virtual WizardController* GetWizardController() OVERRIDE; | 74 virtual WizardController* GetWizardController() OVERRIDE; |
75 virtual AppLaunchController* GetAppLaunchController() OVERRIDE; | 75 virtual AppLaunchController* GetAppLaunchController() OVERRIDE; |
76 virtual void StartUserAdding( | 76 virtual void StartUserAdding( |
77 const base::Closure& completion_callback) OVERRIDE; | 77 const base::Closure& completion_callback) OVERRIDE; |
78 virtual void StartSignInScreen(const LoginScreenContext& context) OVERRIDE; | 78 virtual void StartSignInScreen(const LoginScreenContext& context) OVERRIDE; |
79 virtual void ResumeSignInScreen() OVERRIDE; | 79 virtual void ResumeSignInScreen() OVERRIDE; |
80 virtual void OnPreferencesChanged() OVERRIDE; | 80 virtual void OnPreferencesChanged() OVERRIDE; |
81 virtual void PrewarmAuthentication() OVERRIDE; | 81 virtual void PrewarmAuthentication() OVERRIDE; |
82 virtual void StartAppLaunch(const std::string& app_id) OVERRIDE; | 82 virtual void StartAppLaunch(const std::string& app_id) OVERRIDE; |
83 | 83 |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 bool waiting_for_user_pods_; | 251 bool waiting_for_user_pods_; |
252 | 252 |
253 // How many times renderer has crashed. | 253 // How many times renderer has crashed. |
254 int crash_count_; | 254 int crash_count_; |
255 | 255 |
256 // Way to restore if renderer have crashed. | 256 // Way to restore if renderer have crashed. |
257 RestorePath restore_path_; | 257 RestorePath restore_path_; |
258 | 258 |
259 // Stored parameters for StartWizard, required to restore in case of crash. | 259 // Stored parameters for StartWizard, required to restore in case of crash. |
260 std::string wizard_first_screen_name_; | 260 std::string wizard_first_screen_name_; |
261 scoped_ptr<DictionaryValue> wizard_screen_parameters_; | 261 scoped_ptr<base::DictionaryValue> wizard_screen_parameters_; |
262 | 262 |
263 // Old value of the ash::internal::kIgnoreSoloWindowFramePainterPolicy | 263 // Old value of the ash::internal::kIgnoreSoloWindowFramePainterPolicy |
264 // property of the root window for |login_window_|. | 264 // property of the root window for |login_window_|. |
265 bool old_ignore_solo_window_frame_painter_policy_value_; | 265 bool old_ignore_solo_window_frame_painter_policy_value_; |
266 | 266 |
267 // Called before host deletion. | 267 // Called before host deletion. |
268 base::Closure completion_callback_; | 268 base::Closure completion_callback_; |
269 | 269 |
270 // Active instance of authentication prewarmer. | 270 // Active instance of authentication prewarmer. |
271 scoped_ptr<AuthPrewarmer> auth_prewarmer_; | 271 scoped_ptr<AuthPrewarmer> auth_prewarmer_; |
(...skipping 28 matching lines...) Expand all Loading... |
300 // feedback is enabled. Otherwise, startup sound should be played | 300 // feedback is enabled. Otherwise, startup sound should be played |
301 // in any case. | 301 // in any case. |
302 bool startup_sound_honors_spoken_feedback_; | 302 bool startup_sound_honors_spoken_feedback_; |
303 | 303 |
304 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 304 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
305 }; | 305 }; |
306 | 306 |
307 } // namespace chromeos | 307 } // namespace chromeos |
308 | 308 |
309 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ | 309 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ |
OLD | NEW |