Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(474)

Unified Diff: chrome/browser/ui/ash/system_tray_client.cc

Issue 2373863002: mustash: Connect ash system tray "show settings" items to chrome over mojo (Closed)
Patch Set: review comments Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/ash/system_tray_client.h ('k') | chrome/browser/ui/ash/system_tray_common.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/ash/system_tray_client.cc
diff --git a/chrome/browser/ui/ash/system_tray_client.cc b/chrome/browser/ui/ash/system_tray_client.cc
index 81acd94ea8232c84e55346ecb9389bd9b665c1fc..df8c5e0b1578c95c8197fde50f23316bbdc9fd15 100644
--- a/chrome/browser/ui/ash/system_tray_client.cc
+++ b/chrome/browser/ui/ash/system_tray_client.cc
@@ -57,10 +57,60 @@ void SystemTrayClient::OnClientConnectionError() {
system_tray_.reset();
}
+////////////////////////////////////////////////////////////////////////////////
+// ash::mojom::SystemTrayClient:
+
+void SystemTrayClient::ShowSettings() {
+ SystemTrayCommon::ShowSettings();
+}
+
void SystemTrayClient::ShowDateSettings() {
SystemTrayCommon::ShowDateSettings();
}
+void SystemTrayClient::ShowDisplaySettings() {
+ SystemTrayCommon::ShowDisplaySettings();
+}
+
+void SystemTrayClient::ShowChromeSlow() {
+ SystemTrayCommon::ShowChromeSlow();
+}
+
+void SystemTrayClient::ShowIMESettings() {
+ SystemTrayCommon::ShowIMESettings();
+}
+
+void SystemTrayClient::ShowHelp() {
+ SystemTrayCommon::ShowHelp();
+}
+
+void SystemTrayClient::ShowAccessibilityHelp() {
+ SystemTrayCommon::ShowAccessibilityHelp();
+}
+
+void SystemTrayClient::ShowAccessibilitySettings() {
+ SystemTrayCommon::ShowAccessibilitySettings();
+}
+
+void SystemTrayClient::ShowPaletteHelp() {
+ SystemTrayCommon::ShowPaletteHelp();
+}
+
+void SystemTrayClient::ShowPaletteSettings() {
+ SystemTrayCommon::ShowPaletteSettings();
+}
+
+void SystemTrayClient::ShowPublicAccountInfo() {
+ SystemTrayCommon::ShowPublicAccountInfo();
+}
+
+void SystemTrayClient::ShowProxySettings() {
+ SystemTrayCommon::ShowProxySettings();
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// chromeos::system::SystemClockObserver:
+
void SystemTrayClient::OnSystemClockChanged(
chromeos::system::SystemClock* clock) {
ConnectToSystemTray();
« no previous file with comments | « chrome/browser/ui/ash/system_tray_client.h ('k') | chrome/browser/ui/ash/system_tray_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698