| 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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 scoped_ptr<CaptivePortalWindowProxy> captive_portal_window_proxy_; | 280 scoped_ptr<CaptivePortalWindowProxy> captive_portal_window_proxy_; |
| 281 | 281 |
| 282 // Test credentials. | 282 // Test credentials. |
| 283 std::string test_user_; | 283 std::string test_user_; |
| 284 std::string test_pass_; | 284 std::string test_pass_; |
| 285 | 285 |
| 286 BrowsingDataRemover* cookie_remover_; | 286 BrowsingDataRemover* cookie_remover_; |
| 287 | 287 |
| 288 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 288 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
| 289 | 289 |
| 290 // Set to true once |LOGIN_WEBUI_VISIBLE| notification is observed. |
| 291 bool webui_visible_; |
| 292 |
| 290 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 293 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
| 291 }; | 294 }; |
| 292 | 295 |
| 293 } // namespace chromeos | 296 } // namespace chromeos |
| 294 | 297 |
| 295 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 298 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| OLD | NEW |