| 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/ui/ash/network_connect_delegate_chromeos.h" | 5 #include "chrome/browser/ui/ash/network_connect_delegate_chromeos.h" |
| 6 | 6 |
| 7 #include "ash/common/session/session_state_delegate.h" | 7 #include "ash/common/session/session_state_delegate.h" |
| 8 #include "ash/common/shell_window_ids.h" | 8 #include "ash/common/shell_window_ids.h" |
| 9 #include "ash/common/system/tray/system_tray_delegate.h" | 9 #include "ash/common/system/tray/system_tray_delegate.h" |
| 10 #include "ash/common/wm_shell.h" |
| 10 #include "ash/shell.h" | 11 #include "ash/shell.h" |
| 11 #include "ash/system/user/login_status.h" | 12 #include "ash/system/user/login_status.h" |
| 12 #include "chrome/browser/chromeos/enrollment_dialog_view.h" | 13 #include "chrome/browser/chromeos/enrollment_dialog_view.h" |
| 13 #include "chrome/browser/chromeos/options/network_config_view.h" | 14 #include "chrome/browser/chromeos/options/network_config_view.h" |
| 14 #include "chrome/browser/chromeos/sim_dialog_delegate.h" | 15 #include "chrome/browser/chromeos/sim_dialog_delegate.h" |
| 15 #include "chrome/browser/ui/webui/chromeos/mobile_setup_dialog.h" | 16 #include "chrome/browser/ui/webui/chromeos/mobile_setup_dialog.h" |
| 16 | 17 |
| 17 namespace { | 18 namespace { |
| 18 | 19 |
| 19 bool IsUIAvailable() { | 20 bool IsUIAvailable() { |
| 20 return ash::Shell::GetInstance() && | 21 return ash::Shell::GetInstance() && |
| 21 !ash::Shell::GetInstance()->session_state_delegate()->IsScreenLocked(); | 22 !ash::Shell::GetInstance()->session_state_delegate()->IsScreenLocked(); |
| 22 } | 23 } |
| 23 | 24 |
| 24 gfx::NativeWindow GetNativeWindow() { | 25 gfx::NativeWindow GetNativeWindow() { |
| 25 bool session_started = ash::Shell::GetInstance() | 26 bool session_started = ash::Shell::GetInstance() |
| 26 ->session_state_delegate() | 27 ->session_state_delegate() |
| 27 ->IsActiveUserSessionStarted(); | 28 ->IsActiveUserSessionStarted(); |
| 28 ash::LoginStatus login_status = | 29 ash::LoginStatus login_status = |
| 29 ash::Shell::GetInstance()->system_tray_delegate()->GetUserLoginStatus(); | 30 ash::WmShell::Get()->system_tray_delegate()->GetUserLoginStatus(); |
| 30 bool isUserAddingRunning = ash::Shell::GetInstance() | 31 bool isUserAddingRunning = ash::Shell::GetInstance() |
| 31 ->session_state_delegate() | 32 ->session_state_delegate() |
| 32 ->IsInSecondaryLoginScreen(); | 33 ->IsInSecondaryLoginScreen(); |
| 33 | 34 |
| 34 int container_id = | 35 int container_id = |
| 35 (!session_started || login_status == ash::LoginStatus::NOT_LOGGED_IN || | 36 (!session_started || login_status == ash::LoginStatus::NOT_LOGGED_IN || |
| 36 login_status == ash::LoginStatus::LOCKED || isUserAddingRunning) | 37 login_status == ash::LoginStatus::LOCKED || isUserAddingRunning) |
| 37 ? ash::kShellWindowId_LockSystemModalContainer | 38 ? ash::kShellWindowId_LockSystemModalContainer |
| 38 : ash::kShellWindowId_SystemModalContainer; | 39 : ash::kShellWindowId_SystemModalContainer; |
| 39 return ash::Shell::GetContainer(ash::Shell::GetPrimaryRootWindow(), | 40 return ash::Shell::GetContainer(ash::Shell::GetPrimaryRootWindow(), |
| (...skipping 14 matching lines...) Expand all Loading... |
| 54 const std::string& network_id) { | 55 const std::string& network_id) { |
| 55 if (!IsUIAvailable()) | 56 if (!IsUIAvailable()) |
| 56 return; | 57 return; |
| 57 NetworkConfigView::Show(network_id, GetNativeWindow()); | 58 NetworkConfigView::Show(network_id, GetNativeWindow()); |
| 58 } | 59 } |
| 59 | 60 |
| 60 void NetworkConnectDelegateChromeOS::ShowNetworkSettingsForGuid( | 61 void NetworkConnectDelegateChromeOS::ShowNetworkSettingsForGuid( |
| 61 const std::string& network_id) { | 62 const std::string& network_id) { |
| 62 if (!IsUIAvailable()) | 63 if (!IsUIAvailable()) |
| 63 return; | 64 return; |
| 64 ash::Shell::GetInstance()->system_tray_delegate()->ShowNetworkSettingsForGuid( | 65 ash::WmShell::Get()->system_tray_delegate()->ShowNetworkSettingsForGuid( |
| 65 network_id); | 66 network_id); |
| 66 } | 67 } |
| 67 | 68 |
| 68 bool NetworkConnectDelegateChromeOS::ShowEnrollNetwork( | 69 bool NetworkConnectDelegateChromeOS::ShowEnrollNetwork( |
| 69 const std::string& network_id) { | 70 const std::string& network_id) { |
| 70 if (!IsUIAvailable()) | 71 if (!IsUIAvailable()) |
| 71 return false; | 72 return false; |
| 72 return enrollment::CreateDialog(network_id, GetNativeWindow()); | 73 return enrollment::CreateDialog(network_id, GetNativeWindow()); |
| 73 } | 74 } |
| 74 | 75 |
| 75 void NetworkConnectDelegateChromeOS::ShowMobileSimDialog() { | 76 void NetworkConnectDelegateChromeOS::ShowMobileSimDialog() { |
| 76 if (!IsUIAvailable()) | 77 if (!IsUIAvailable()) |
| 77 return; | 78 return; |
| 78 SimDialogDelegate::ShowDialog(GetNativeWindow(), | 79 SimDialogDelegate::ShowDialog(GetNativeWindow(), |
| 79 SimDialogDelegate::SIM_DIALOG_UNLOCK); | 80 SimDialogDelegate::SIM_DIALOG_UNLOCK); |
| 80 } | 81 } |
| 81 | 82 |
| 82 void NetworkConnectDelegateChromeOS::ShowMobileSetupDialog( | 83 void NetworkConnectDelegateChromeOS::ShowMobileSetupDialog( |
| 83 const std::string& service_path) { | 84 const std::string& service_path) { |
| 84 if (!IsUIAvailable()) | 85 if (!IsUIAvailable()) |
| 85 return; | 86 return; |
| 86 MobileSetupDialog::Show(service_path); | 87 MobileSetupDialog::Show(service_path); |
| 87 } | 88 } |
| 88 | 89 |
| 89 } // namespace chromeos | 90 } // namespace chromeos |
| OLD | NEW |