| 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 #include "chrome/browser/ui/webui/chromeos/login/error_screen_handler.h" | 5 #include "chrome/browser/ui/webui/chromeos/login/error_screen_handler.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
| 10 #include "chrome/browser/chrome_notification_types.h" | 10 #include "chrome/browser/chrome_notification_types.h" |
| 11 #include "chrome/browser/chromeos/app_mode/app_session_lifetime.h" | 11 #include "chrome/browser/chromeos/app_mode/app_session_lifetime.h" |
| 12 #include "chrome/browser/chromeos/app_mode/certificate_manager_dialog.h" | 12 #include "chrome/browser/chromeos/app_mode/certificate_manager_dialog.h" |
| 13 #include "chrome/browser/chromeos/login/ui/captive_portal_window_proxy.h" | 13 #include "chrome/browser/chromeos/login/ui/captive_portal_window_proxy.h" |
| 14 #include "chrome/browser/chromeos/login/ui/login_display_host_impl.h" | 14 #include "chrome/browser/chromeos/login/ui/login_display_host_impl.h" |
| 15 #include "chrome/browser/chromeos/login/ui/webui_login_view.h" | 15 #include "chrome/browser/chromeos/login/ui/webui_login_view.h" |
| 16 #include "chrome/browser/extensions/component_loader.h" | 16 #include "chrome/browser/extensions/component_loader.h" |
| 17 #include "chrome/browser/extensions/extension_service.h" | 17 #include "chrome/browser/extensions/extension_service.h" |
| 18 #include "chrome/browser/profiles/profile_manager.h" |
| 18 #include "chrome/browser/ui/extensions/application_launch.h" | 19 #include "chrome/browser/ui/extensions/application_launch.h" |
| 19 #include "chrome/browser/ui/webui/chromeos/login/native_window_delegate.h" | 20 #include "chrome/browser/ui/webui/chromeos/login/native_window_delegate.h" |
| 20 #include "chrome/browser/ui/webui/chromeos/login/network_state_informer.h" | 21 #include "chrome/browser/ui/webui/chromeos/login/network_state_informer.h" |
| 21 #include "chromeos/dbus/dbus_thread_manager.h" | 22 #include "chromeos/dbus/dbus_thread_manager.h" |
| 22 #include "chromeos/dbus/power_manager_client.h" | 23 #include "chromeos/dbus/power_manager_client.h" |
| 23 #include "chromeos/dbus/session_manager_client.h" | 24 #include "chromeos/dbus/session_manager_client.h" |
| 24 #include "chromeos/network/portal_detector/network_portal_detector.h" | 25 #include "chromeos/network/portal_detector/network_portal_detector.h" |
| 25 #include "chromeos/network/portal_detector/network_portal_detector_strategy.h" | 26 #include "chromeos/network/portal_detector/network_portal_detector_strategy.h" |
| 26 #include "components/user_manager/user_manager.h" | 27 #include "components/user_manager/user_manager.h" |
| 27 #include "extensions/browser/extension_system.h" | 28 #include "extensions/browser/extension_system.h" |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 params.SetString("network", network_); | 289 params.SetString("network", network_); |
| 289 params.SetBoolean("guestSigninAllowed", guest_signin_allowed_); | 290 params.SetBoolean("guestSigninAllowed", guest_signin_allowed_); |
| 290 params.SetBoolean("offlineLoginAllowed", offline_login_allowed_); | 291 params.SetBoolean("offlineLoginAllowed", offline_login_allowed_); |
| 291 params.SetBoolean("showConnectingIndicator", show_connecting_indicator_); | 292 params.SetBoolean("showConnectingIndicator", show_connecting_indicator_); |
| 292 Show(parent_screen_, ¶ms); | 293 Show(parent_screen_, ¶ms); |
| 293 show_on_init_ = false; | 294 show_on_init_ = false; |
| 294 } | 295 } |
| 295 } | 296 } |
| 296 | 297 |
| 297 } // namespace chromeos | 298 } // namespace chromeos |
| OLD | NEW |