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_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 | 211 |
212 // A delegate that glues this handler with backend LoginDisplay. | 212 // A delegate that glues this handler with backend LoginDisplay. |
213 SigninScreenHandlerDelegate* delegate_; | 213 SigninScreenHandlerDelegate* delegate_; |
214 | 214 |
215 // Whether screen should be shown right after initialization. | 215 // Whether screen should be shown right after initialization. |
216 bool show_on_init_; | 216 bool show_on_init_; |
217 | 217 |
218 // Keeps whether screen should be shown for OOBE. | 218 // Keeps whether screen should be shown for OOBE. |
219 bool oobe_ui_; | 219 bool oobe_ui_; |
220 | 220 |
221 // Whether webui has been loaded for the first time. | 221 // Is focus still stolen from Gaia page? |
222 bool is_first_webui_ready_; | 222 bool focus_stolen_; |
223 | 223 |
224 // Whether it is the first attempt to load the gaia extension. | 224 // Has Gaia page silent load been started for the current sign-in attempt? |
225 bool is_first_attempt_; | 225 bool gaia_silent_load_; |
226 | 226 |
227 // True if dns cache cleanup is done. | 227 // True if dns cache cleanup is done. |
228 bool dns_cleared_; | 228 bool dns_cleared_; |
229 | 229 |
230 // True if DNS cache task is already running. | 230 // True if DNS cache task is already running. |
231 bool dns_clear_task_running_; | 231 bool dns_clear_task_running_; |
232 | 232 |
233 // True if cookie jar cleanup is done. | 233 // True if cookie jar cleanup is done. |
234 bool cookies_cleared_; | 234 bool cookies_cleared_; |
235 | 235 |
(...skipping 18 matching lines...) Expand all Loading... |
254 | 254 |
255 // CapsLock state change notifier instance; | 255 // CapsLock state change notifier instance; |
256 SystemKeyEventListener* key_event_listener_; | 256 SystemKeyEventListener* key_event_listener_; |
257 | 257 |
258 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 258 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
259 }; | 259 }; |
260 | 260 |
261 } // namespace chromeos | 261 } // namespace chromeos |
262 | 262 |
263 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 263 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
OLD | NEW |