OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/chromeos/login/ui/webui_login_view.h" | 5 #include "chrome/browser/chromeos/login/ui/webui_login_view.h" |
6 | 6 |
7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
8 #include "ash/system/tray/system_tray.h" | 8 #include "ash/system/tray/system_tray.h" |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/debug/trace_event.h" | 11 #include "base/debug/trace_event.h" |
12 #include "base/i18n/rtl.h" | 12 #include "base/i18n/rtl.h" |
13 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
14 #include "base/values.h" | 14 #include "base/values.h" |
15 #include "chrome/browser/chrome_notification_types.h" | 15 #include "chrome/browser/chrome_notification_types.h" |
16 #include "chrome/browser/chromeos/accessibility/accessibility_util.h" | 16 #include "chrome/browser/chromeos/accessibility/accessibility_util.h" |
17 #include "chrome/browser/chromeos/login/ui/login_display_host_impl.h" | 17 #include "chrome/browser/chromeos/login/ui/login_display_host_impl.h" |
18 #include "chrome/browser/chromeos/login/ui/proxy_settings_dialog.h" | 18 #include "chrome/browser/chromeos/login/ui/proxy_settings_dialog.h" |
19 #include "chrome/browser/chromeos/login/ui/webui_login_display.h" | 19 #include "chrome/browser/chromeos/login/ui/webui_login_display.h" |
20 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 20 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
21 #include "chrome/browser/extensions/chrome_extension_web_contents_observer.h" | 21 #include "chrome/browser/extensions/chrome_extension_web_contents_observer.h" |
22 #include "chrome/browser/media/media_stream_infobar_delegate.h" | 22 #include "chrome/browser/media/media_stream_infobar_delegate.h" |
23 #include "chrome/browser/password_manager/chrome_password_manager_client.h" | 23 #include "chrome/browser/password_manager/chrome_password_manager_client.h" |
24 #include "chrome/browser/renderer_preferences_util.h" | 24 #include "chrome/browser/renderer_preferences_util.h" |
25 #include "chrome/browser/sessions/session_tab_helper.h" | 25 #include "chrome/browser/sessions/session_tab_helper.h" |
26 #include "chrome/browser/ui/autofill/tab_autofill_manager_delegate.h" | 26 #include "chrome/browser/ui/autofill/chrome_autofill_client.h" |
27 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" | 27 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" |
28 #include "chrome/common/render_messages.h" | 28 #include "chrome/common/render_messages.h" |
29 #include "chromeos/dbus/dbus_thread_manager.h" | 29 #include "chromeos/dbus/dbus_thread_manager.h" |
30 #include "chromeos/dbus/session_manager_client.h" | 30 #include "chromeos/dbus/session_manager_client.h" |
31 #include "chromeos/network/network_state.h" | 31 #include "chromeos/network/network_state.h" |
32 #include "chromeos/network/network_state_handler.h" | 32 #include "chromeos/network/network_state_handler.h" |
33 #include "components/password_manager/core/browser/password_manager.h" | 33 #include "components/password_manager/core/browser/password_manager.h" |
34 #include "components/web_modal/web_contents_modal_dialog_manager.h" | 34 #include "components/web_modal/web_contents_modal_dialog_manager.h" |
35 #include "content/public/browser/notification_service.h" | 35 #include "content/public/browser/notification_service.h" |
36 #include "content/public/browser/render_view_host.h" | 36 #include "content/public/browser/render_view_host.h" |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 AddChildView(webui_login_); | 171 AddChildView(webui_login_); |
172 | 172 |
173 WebContents* web_contents = webui_login_->GetWebContents(); | 173 WebContents* web_contents = webui_login_->GetWebContents(); |
174 | 174 |
175 // Ensure that the login UI has a tab ID, which will allow the GAIA auth | 175 // Ensure that the login UI has a tab ID, which will allow the GAIA auth |
176 // extension's background script to tell it apart from a captive portal window | 176 // extension's background script to tell it apart from a captive portal window |
177 // that may be opened on top of this UI. | 177 // that may be opened on top of this UI. |
178 SessionTabHelper::CreateForWebContents(web_contents); | 178 SessionTabHelper::CreateForWebContents(web_contents); |
179 | 179 |
180 // Create the password manager that is needed for the proxy. | 180 // Create the password manager that is needed for the proxy. |
181 ChromePasswordManagerClient::CreateForWebContentsWithAutofillManagerDelegate( | 181 ChromePasswordManagerClient::CreateForWebContentsWithAutofillClient( |
182 web_contents, | 182 web_contents, |
183 autofill::TabAutofillManagerDelegate::FromWebContents(web_contents)); | 183 autofill::ChromeAutofillClient::FromWebContents(web_contents)); |
184 | 184 |
185 // LoginHandlerViews uses a constrained window for the password manager view. | 185 // LoginHandlerViews uses a constrained window for the password manager view. |
186 WebContentsModalDialogManager::CreateForWebContents(web_contents); | 186 WebContentsModalDialogManager::CreateForWebContents(web_contents); |
187 WebContentsModalDialogManager::FromWebContents(web_contents)-> | 187 WebContentsModalDialogManager::FromWebContents(web_contents)-> |
188 SetDelegate(this); | 188 SetDelegate(this); |
189 | 189 |
190 web_contents->SetDelegate(this); | 190 web_contents->SetDelegate(this); |
191 extensions::ChromeExtensionWebContentsObserver::CreateForWebContents( | 191 extensions::ChromeExtensionWebContentsObserver::CreateForWebContents( |
192 web_contents); | 192 web_contents); |
193 WebContentsObserver::Observe(web_contents); | 193 WebContentsObserver::Observe(web_contents); |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 webui_visible_ = true; | 451 webui_visible_ = true; |
452 } | 452 } |
453 | 453 |
454 void WebUILoginView::ReturnFocus(bool reverse) { | 454 void WebUILoginView::ReturnFocus(bool reverse) { |
455 // Return the focus to the web contents. | 455 // Return the focus to the web contents. |
456 webui_login_->web_contents()->FocusThroughTabTraversal(reverse); | 456 webui_login_->web_contents()->FocusThroughTabTraversal(reverse); |
457 GetWidget()->Activate(); | 457 GetWidget()->Activate(); |
458 } | 458 } |
459 | 459 |
460 } // namespace chromeos | 460 } // namespace chromeos |
OLD | NEW |