| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 // pods to load. | 273 // pods to load. |
| 274 bool waiting_for_user_pods_; | 274 bool waiting_for_user_pods_; |
| 275 | 275 |
| 276 // How many times renderer has crashed. | 276 // How many times renderer has crashed. |
| 277 int crash_count_; | 277 int crash_count_; |
| 278 | 278 |
| 279 // Way to restore if renderer have crashed. | 279 // Way to restore if renderer have crashed. |
| 280 RestorePath restore_path_; | 280 RestorePath restore_path_; |
| 281 | 281 |
| 282 // Stored parameters for StartWizard, required to restore in case of crash. | 282 // Stored parameters for StartWizard, required to restore in case of crash. |
| 283 std::string wizard_first_screen_name_; | 283 std::string first_screen_name_; |
| 284 scoped_ptr<base::DictionaryValue> wizard_screen_parameters_; | 284 scoped_ptr<base::DictionaryValue> screen_parameters_; |
| 285 | 285 |
| 286 // Called before host deletion. | 286 // Called before host deletion. |
| 287 base::Closure completion_callback_; | 287 base::Closure completion_callback_; |
| 288 | 288 |
| 289 // Active instance of authentication prewarmer. | 289 // Active instance of authentication prewarmer. |
| 290 scoped_ptr<AuthPrewarmer> auth_prewarmer_; | 290 scoped_ptr<AuthPrewarmer> auth_prewarmer_; |
| 291 | 291 |
| 292 // A focus ring controller to draw focus ring around view for keyboard | 292 // A focus ring controller to draw focus ring around view for keyboard |
| 293 // driven oobe. | 293 // driven oobe. |
| 294 scoped_ptr<FocusRingController> focus_ring_controller_; | 294 scoped_ptr<FocusRingController> focus_ring_controller_; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 322 #endif | 322 #endif |
| 323 | 323 |
| 324 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; | 324 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; |
| 325 | 325 |
| 326 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 326 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
| 327 }; | 327 }; |
| 328 | 328 |
| 329 } // namespace chromeos | 329 } // namespace chromeos |
| 330 | 330 |
| 331 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 331 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
| OLD | NEW |