| 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();
|
|
|