Chromium Code Reviews| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 247 | 247 |
| 248 // A delegate that glues this handler with backend LoginDisplay. | 248 // A delegate that glues this handler with backend LoginDisplay. |
| 249 SigninScreenHandlerDelegate* delegate_; | 249 SigninScreenHandlerDelegate* delegate_; |
| 250 | 250 |
| 251 // Whether screen should be shown right after initialization. | 251 // Whether screen should be shown right after initialization. |
| 252 bool show_on_init_; | 252 bool show_on_init_; |
| 253 | 253 |
| 254 // Keeps whether screen should be shown for OOBE. | 254 // Keeps whether screen should be shown for OOBE. |
| 255 bool oobe_ui_; | 255 bool oobe_ui_; |
| 256 | 256 |
| 257 // Whether webui has been loaded for the first time. | 257 // Is focus still stolen from Gaia page? |
| 258 bool is_first_webui_ready_; | 258 bool focus_is_stolen_; |
| 259 | 259 |
| 260 // Whether it is the first attempt to load the gaia extension. | 260 // Is Gaia page preloaded (in the background)? |
|
Nikita (slow)
2012/03/06 14:36:02
Looking at the cc file it should be:
// Is Gaia p
altimofeev
2012/03/06 17:39:22
Done.
| |
| 261 bool is_first_attempt_; | 261 bool gaia_is_preloaded_; |
| 262 | 262 |
| 263 // True if dns cache cleanup is done. | 263 // True if dns cache cleanup is done. |
| 264 bool dns_cleared_; | 264 bool dns_cleared_; |
| 265 | 265 |
| 266 // True if DNS cache task is already running. | 266 // True if DNS cache task is already running. |
| 267 bool dns_clear_task_running_; | 267 bool dns_clear_task_running_; |
| 268 | 268 |
| 269 // True if cookie jar cleanup is done. | 269 // True if cookie jar cleanup is done. |
| 270 bool cookies_cleared_; | 270 bool cookies_cleared_; |
| 271 | 271 |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 290 | 290 |
| 291 // CapsLock state change notifier instance; | 291 // CapsLock state change notifier instance; |
| 292 SystemKeyEventListener* key_event_listener_; | 292 SystemKeyEventListener* key_event_listener_; |
| 293 | 293 |
| 294 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 294 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
| 295 }; | 295 }; |
| 296 | 296 |
| 297 } // namespace chromeos | 297 } // namespace chromeos |
| 298 | 298 |
| 299 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 299 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| OLD | NEW |