| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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<base::DictionaryValue> wizard_screen_parameters_; | 261 scoped_ptr<base::DictionaryValue> wizard_screen_parameters_; |
| 262 | 262 |
| 263 // Old value of the ash::internal::kIgnoreSoloWindowFramePainterPolicy | |
| 264 // property of the root window for |login_window_|. | |
| 265 bool old_ignore_solo_window_frame_painter_policy_value_; | |
| 266 | |
| 267 // Called before host deletion. | 263 // Called before host deletion. |
| 268 base::Closure completion_callback_; | 264 base::Closure completion_callback_; |
| 269 | 265 |
| 270 // Active instance of authentication prewarmer. | 266 // Active instance of authentication prewarmer. |
| 271 scoped_ptr<AuthPrewarmer> auth_prewarmer_; | 267 scoped_ptr<AuthPrewarmer> auth_prewarmer_; |
| 272 | 268 |
| 273 // A focus ring controller to draw focus ring around view for keyboard | 269 // A focus ring controller to draw focus ring around view for keyboard |
| 274 // driven oobe. | 270 // driven oobe. |
| 275 scoped_ptr<FocusRingController> focus_ring_controller_; | 271 scoped_ptr<FocusRingController> focus_ring_controller_; |
| 276 | 272 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 300 // feedback is enabled. Otherwise, startup sound should be played | 296 // feedback is enabled. Otherwise, startup sound should be played |
| 301 // in any case. | 297 // in any case. |
| 302 bool startup_sound_honors_spoken_feedback_; | 298 bool startup_sound_honors_spoken_feedback_; |
| 303 | 299 |
| 304 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 300 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
| 305 }; | 301 }; |
| 306 | 302 |
| 307 } // namespace chromeos | 303 } // namespace chromeos |
| 308 | 304 |
| 309 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ | 305 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ |
| OLD | NEW |