| 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 scoped_ptr<CaptivePortalWindowProxy> captive_portal_window_proxy_; | 287 scoped_ptr<CaptivePortalWindowProxy> captive_portal_window_proxy_; |
| 288 | 288 |
| 289 // Test credentials. | 289 // Test credentials. |
| 290 std::string test_user_; | 290 std::string test_user_; |
| 291 std::string test_pass_; | 291 std::string test_pass_; |
| 292 | 292 |
| 293 BrowsingDataRemover* cookie_remover_; | 293 BrowsingDataRemover* cookie_remover_; |
| 294 | 294 |
| 295 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 295 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
| 296 | 296 |
| 297 // Set to true once |LOGIN_WEBUI_VISIBLE| notification is observed. |
| 298 bool webui_visible_; |
| 299 |
| 297 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 300 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
| 298 }; | 301 }; |
| 299 | 302 |
| 300 } // namespace chromeos | 303 } // namespace chromeos |
| 301 | 304 |
| 302 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 305 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| OLD | NEW |