| 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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 bool startup_sound_played_; | 299 bool startup_sound_played_; |
| 300 | 300 |
| 301 // When true, startup sound should be played only when spoken | 301 // When true, startup sound should be played only when spoken |
| 302 // feedback is enabled. Otherwise, startup sound should be played | 302 // feedback is enabled. Otherwise, startup sound should be played |
| 303 // in any case. | 303 // in any case. |
| 304 bool startup_sound_honors_spoken_feedback_; | 304 bool startup_sound_honors_spoken_feedback_; |
| 305 | 305 |
| 306 // True is subscribed as keyboard controller observer. | 306 // True is subscribed as keyboard controller observer. |
| 307 bool is_observing_keyboard_; | 307 bool is_observing_keyboard_; |
| 308 | 308 |
| 309 // True if the host is showing a new version of OOBE screen. | |
| 310 bool is_new_oobe_; | |
| 311 | |
| 312 // Keeps a copy of the old Drag'n'Drop client, so that it would be disabled | 309 // Keeps a copy of the old Drag'n'Drop client, so that it would be disabled |
| 313 // during a login session and restored afterwards. | 310 // during a login session and restored afterwards. |
| 314 scoped_ptr<aura::client::ScopedDragDropDisabler> scoped_drag_drop_disabler_; | 311 scoped_ptr<aura::client::ScopedDragDropDisabler> scoped_drag_drop_disabler_; |
| 315 | 312 |
| 316 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; | 313 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; |
| 317 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; | 314 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; |
| 318 | 315 |
| 319 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 316 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
| 320 }; | 317 }; |
| 321 | 318 |
| 322 } // namespace chromeos | 319 } // namespace chromeos |
| 323 | 320 |
| 324 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 321 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
| OLD | NEW |