| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "ash/system/tray/system_tray_controller.h" | 5 #include "ash/system/tray/system_tray_controller.h" |
| 6 | 6 |
| 7 #include "ash/root_window_controller.h" | 7 #include "ash/root_window_controller.h" |
| 8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
| 9 #include "ash/shell_port.h" | 9 #include "ash/shell_port.h" |
| 10 #include "ash/system/tray/system_tray.h" | 10 #include "ash/system/tray/system_tray.h" |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 void SystemTrayController::ShowChromeSlow() { | 63 void SystemTrayController::ShowChromeSlow() { |
| 64 if (system_tray_client_) | 64 if (system_tray_client_) |
| 65 system_tray_client_->ShowChromeSlow(); | 65 system_tray_client_->ShowChromeSlow(); |
| 66 } | 66 } |
| 67 | 67 |
| 68 void SystemTrayController::ShowIMESettings() { | 68 void SystemTrayController::ShowIMESettings() { |
| 69 if (system_tray_client_) | 69 if (system_tray_client_) |
| 70 system_tray_client_->ShowIMESettings(); | 70 system_tray_client_->ShowIMESettings(); |
| 71 } | 71 } |
| 72 | 72 |
| 73 void SystemTrayController::ShowAboutChromeOS(bool check_for_update) { |
| 74 if (system_tray_client_) |
| 75 system_tray_client_->ShowAboutChromeOS(check_for_update); |
| 76 } |
| 77 |
| 73 void SystemTrayController::ShowHelp() { | 78 void SystemTrayController::ShowHelp() { |
| 74 if (system_tray_client_) | 79 if (system_tray_client_) |
| 75 system_tray_client_->ShowHelp(); | 80 system_tray_client_->ShowHelp(); |
| 76 } | 81 } |
| 77 | 82 |
| 78 void SystemTrayController::ShowAccessibilityHelp() { | 83 void SystemTrayController::ShowAccessibilityHelp() { |
| 79 if (system_tray_client_) | 84 if (system_tray_client_) |
| 80 system_tray_client_->ShowAccessibilityHelp(); | 85 system_tray_client_->ShowAccessibilityHelp(); |
| 81 } | 86 } |
| 82 | 87 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 for (WmWindow* root : ShellPort::Get()->GetAllRootWindows()) { | 208 for (WmWindow* root : ShellPort::Get()->GetAllRootWindows()) { |
| 204 ash::SystemTray* tray = root->GetRootWindowController()->GetSystemTray(); | 209 ash::SystemTray* tray = root->GetRootWindowController()->GetSystemTray(); |
| 205 // External monitors might not have a tray yet. | 210 // External monitors might not have a tray yet. |
| 206 if (!tray) | 211 if (!tray) |
| 207 continue; | 212 continue; |
| 208 tray->tray_update()->ShowUpdateIcon(severity, factory_reset_required, | 213 tray->tray_update()->ShowUpdateIcon(severity, factory_reset_required, |
| 209 update_type); | 214 update_type); |
| 210 } | 215 } |
| 211 } | 216 } |
| 212 | 217 |
| 218 void SystemTrayController::ShowUpdateOverCellularAvailableIcon() { |
| 219 // Show the icon on all displays. |
| 220 for (WmWindow* root : ShellPort::Get()->GetAllRootWindows()) { |
| 221 ash::SystemTray* tray = root->GetRootWindowController()->GetSystemTray(); |
| 222 // External monitors might not have a tray yet. |
| 223 if (!tray) |
| 224 continue; |
| 225 tray->tray_update()->ShowUpdateOverCellularAvailableIcon(); |
| 226 } |
| 227 } |
| 228 |
| 213 } // namespace ash | 229 } // namespace ash |
| OLD | NEW |