| 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 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 154 |
| 155 // Container of the screen we are displaying. | 155 // Container of the screen we are displaying. |
| 156 views::Widget* login_window_; | 156 views::Widget* login_window_; |
| 157 | 157 |
| 158 // Container of the view we are displaying. | 158 // Container of the view we are displaying. |
| 159 WebUILoginView* login_view_; | 159 WebUILoginView* login_view_; |
| 160 | 160 |
| 161 // Login display we are using. | 161 // Login display we are using. |
| 162 WebUILoginDisplay* webui_login_display_; | 162 WebUILoginDisplay* webui_login_display_; |
| 163 | 163 |
| 164 // True if alternate boot animation is enabled. | |
| 165 bool is_boot_animation2_enabled_; | |
| 166 | |
| 167 // True if the login display is the current screen. | 164 // True if the login display is the current screen. |
| 168 bool is_showing_login_; | 165 bool is_showing_login_; |
| 169 | 166 |
| 170 // True if NOTIFICATION_WALLPAPER_ANIMATION_FINISHED notification has been | 167 // True if NOTIFICATION_WALLPAPER_ANIMATION_FINISHED notification has been |
| 171 // received. | 168 // received. |
| 172 bool is_wallpaper_loaded_; | 169 bool is_wallpaper_loaded_; |
| 173 | 170 |
| 174 // Stores status area current visibility to be applied once login WebUI | 171 // Stores status area current visibility to be applied once login WebUI |
| 175 // is shown. | 172 // is shown. |
| 176 bool status_area_saved_visibility_; | 173 bool status_area_saved_visibility_; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 206 // Old value of the ash::internal::kIgnoreSoloWindowFramePainterPolicy | 203 // Old value of the ash::internal::kIgnoreSoloWindowFramePainterPolicy |
| 207 // property of the root window for |login_window_|. | 204 // property of the root window for |login_window_|. |
| 208 bool old_ignore_solo_window_frame_painter_policy_value_; | 205 bool old_ignore_solo_window_frame_painter_policy_value_; |
| 209 | 206 |
| 210 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 207 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
| 211 }; | 208 }; |
| 212 | 209 |
| 213 } // namespace chromeos | 210 } // namespace chromeos |
| 214 | 211 |
| 215 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ | 212 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ |
| OLD | NEW |