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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 // feedback is enabled. Otherwise, startup sound should be played | 312 // feedback is enabled. Otherwise, startup sound should be played |
313 // in any case. | 313 // in any case. |
314 bool startup_sound_honors_spoken_feedback_; | 314 bool startup_sound_honors_spoken_feedback_; |
315 | 315 |
316 // True is subscribed as keyboard controller observer. | 316 // True is subscribed as keyboard controller observer. |
317 bool is_observing_keyboard_; | 317 bool is_observing_keyboard_; |
318 | 318 |
319 // The bounds of the virtual keyboard. | 319 // The bounds of the virtual keyboard. |
320 gfx::Rect keyboard_bounds_; | 320 gfx::Rect keyboard_bounds_; |
321 | 321 |
| 322 #if defined(USE_ATHENA) |
| 323 scoped_ptr<aura::Window> login_screen_container_; |
| 324 #endif |
| 325 |
322 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 326 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
323 }; | 327 }; |
324 | 328 |
325 } // namespace chromeos | 329 } // namespace chromeos |
326 | 330 |
327 #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 |