| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/hash_tables.h" | 12 #include "base/containers/hash_tables.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 15 #include "chrome/browser/chromeos/login/help_app_launcher.h" | 15 #include "chrome/browser/chromeos/login/help_app_launcher.h" |
| 16 #include "chrome/browser/chromeos/login/login_display.h" | 16 #include "chrome/browser/chromeos/login/login_display.h" |
| 17 #include "chrome/browser/chromeos/login/screens/error_screen_actor.h" | 17 #include "chrome/browser/chromeos/login/screens/error_screen_actor.h" |
| 18 #include "chrome/browser/chromeos/login/user_manager.h" | 18 #include "chrome/browser/chromeos/login/user_manager.h" |
| 19 #include "chrome/browser/chromeos/net/network_portal_detector.h" | 19 #include "chrome/browser/chromeos/net/network_portal_detector.h" |
| 20 #include "chrome/browser/chromeos/system_key_event_listener.h" | 20 #include "chrome/browser/chromeos/system_key_event_listener.h" |
| 21 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h" | 21 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h" |
| 22 #include "chrome/browser/ui/webui/chromeos/login/network_state_informer.h" | 22 #include "chrome/browser/ui/webui/chromeos/login/network_state_informer.h" |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 | 463 |
| 464 // Testing helper, specifies new value for gaia url. | 464 // Testing helper, specifies new value for gaia url. |
| 465 GURL gaia_url_for_test_; | 465 GURL gaia_url_for_test_; |
| 466 | 466 |
| 467 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 467 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
| 468 }; | 468 }; |
| 469 | 469 |
| 470 } // namespace chromeos | 470 } // namespace chromeos |
| 471 | 471 |
| 472 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 472 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| OLD | NEW |