| 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 // feedback is enabled. Otherwise, startup sound should be played | 301 // feedback is enabled. Otherwise, startup sound should be played |
| 302 // in any case. | 302 // in any case. |
| 303 bool startup_sound_honors_spoken_feedback_; | 303 bool startup_sound_honors_spoken_feedback_; |
| 304 | 304 |
| 305 // True is subscribed as keyboard controller observer. | 305 // True is subscribed as keyboard controller observer. |
| 306 bool is_observing_keyboard_; | 306 bool is_observing_keyboard_; |
| 307 | 307 |
| 308 // The bounds of the virtual keyboard. | 308 // The bounds of the virtual keyboard. |
| 309 gfx::Rect keyboard_bounds_; | 309 gfx::Rect keyboard_bounds_; |
| 310 | 310 |
| 311 // True if the host is showing a new version of OOBE screen. |
| 312 bool is_new_oobe_; |
| 313 |
| 311 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; | 314 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; |
| 312 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; | 315 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; |
| 313 | 316 |
| 314 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 317 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
| 315 }; | 318 }; |
| 316 | 319 |
| 317 } // namespace chromeos | 320 } // namespace chromeos |
| 318 | 321 |
| 319 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 322 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
| OLD | NEW |