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

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

Issue 2491403003: chromeos: Move SystemTrayDelegate::RequestShutdown to WmShell (Closed)
Patch Set: 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
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 } 73 }
74 74
75 void SystemTrayDelegate::ShowEnterpriseInfo() {} 75 void SystemTrayDelegate::ShowEnterpriseInfo() {}
76 76
77 void SystemTrayDelegate::ShowUserLogin() {} 77 void SystemTrayDelegate::ShowUserLogin() {}
78 78
79 void SystemTrayDelegate::SignOut() {} 79 void SystemTrayDelegate::SignOut() {}
80 80
81 void SystemTrayDelegate::RequestRestartForUpdate() {} 81 void SystemTrayDelegate::RequestRestartForUpdate() {}
82 82
83 void SystemTrayDelegate::RequestShutdown() {}
84
85 void SystemTrayDelegate::GetAvailableBluetoothDevices( 83 void SystemTrayDelegate::GetAvailableBluetoothDevices(
86 BluetoothDeviceList* list) {} 84 BluetoothDeviceList* list) {}
87 85
88 void SystemTrayDelegate::BluetoothStartDiscovering() {} 86 void SystemTrayDelegate::BluetoothStartDiscovering() {}
89 87
90 void SystemTrayDelegate::BluetoothStopDiscovering() {} 88 void SystemTrayDelegate::BluetoothStopDiscovering() {}
91 89
92 void SystemTrayDelegate::ConnectToBluetoothDevice(const std::string& address) {} 90 void SystemTrayDelegate::ConnectToBluetoothDevice(const std::string& address) {}
93 91
94 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} 92 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {}
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { 166 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const {
169 return nullptr; 167 return nullptr;
170 } 168 }
171 169
172 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( 170 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem(
173 SystemTray* tray) { 171 SystemTray* tray) {
174 return nullptr; 172 return nullptr;
175 } 173 }
176 174
177 } // namespace ash 175 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698