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

Side by Side Diff: ash/common/system/tray/system_tray_delegate.cc

Issue 2438023004: mash: Migrate ShowSetTimeDialog from SystemTrayDelegate to mojo (Closed)
Patch Set: rebase Created 4 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « ash/common/system/tray/system_tray_delegate.h ('k') | ash/public/interfaces/system_tray.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/common/system/tray/system_tray_delegate.h" 5 #include "ash/common/system/tray/system_tray_delegate.h"
6 6
7 #include "ash/common/system/tray/ime_info.h" 7 #include "ash/common/system/tray/ime_info.h"
8 #include "ash/common/system/tray/system_tray_item.h" 8 #include "ash/common/system/tray/system_tray_item.h"
9 9
10 namespace ash { 10 namespace ash {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 void SystemTrayDelegate::GetSystemUpdateInfo(UpdateInfo* info) const { 73 void SystemTrayDelegate::GetSystemUpdateInfo(UpdateInfo* info) const {
74 info->severity = UpdateInfo::UPDATE_NONE; 74 info->severity = UpdateInfo::UPDATE_NONE;
75 info->update_required = false; 75 info->update_required = false;
76 info->factory_reset_required = false; 76 info->factory_reset_required = false;
77 } 77 }
78 78
79 bool SystemTrayDelegate::ShouldShowSettings() { 79 bool SystemTrayDelegate::ShouldShowSettings() {
80 return false; 80 return false;
81 } 81 }
82 82
83 void SystemTrayDelegate::ShowSetTimeDialog() {}
84
85 void SystemTrayDelegate::ShowEnterpriseInfo() {} 83 void SystemTrayDelegate::ShowEnterpriseInfo() {}
86 84
87 void SystemTrayDelegate::ShowUserLogin() {} 85 void SystemTrayDelegate::ShowUserLogin() {}
88 86
89 void SystemTrayDelegate::SignOut() {} 87 void SystemTrayDelegate::SignOut() {}
90 88
91 void SystemTrayDelegate::RequestRestartForUpdate() {} 89 void SystemTrayDelegate::RequestRestartForUpdate() {}
92 90
93 void SystemTrayDelegate::RequestShutdown() {} 91 void SystemTrayDelegate::RequestShutdown() {}
94 92
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { 178 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const {
181 return nullptr; 179 return nullptr;
182 } 180 }
183 181
184 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( 182 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem(
185 SystemTray* tray) { 183 SystemTray* tray) {
186 return nullptr; 184 return nullptr;
187 } 185 }
188 186
189 } // namespace ash 187 } // namespace ash
OLDNEW
« no previous file with comments | « ash/common/system/tray/system_tray_delegate.h ('k') | ash/public/interfaces/system_tray.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698