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

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

Issue 2217713002: Remove the system menu display settings row (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates unittests Created 4 years, 4 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 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 void SystemTrayDelegate::RemoveShutdownPolicyObserver( 218 void SystemTrayDelegate::RemoveShutdownPolicyObserver(
219 ShutdownPolicyObserver* observer) {} 219 ShutdownPolicyObserver* observer) {}
220 220
221 void SystemTrayDelegate::ShouldRebootOnShutdown( 221 void SystemTrayDelegate::ShouldRebootOnShutdown(
222 const RebootOnShutdownCallback& callback) {} 222 const RebootOnShutdownCallback& callback) {}
223 223
224 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { 224 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const {
225 return nullptr; 225 return nullptr;
226 } 226 }
227 227
228 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateDisplayTrayItem(
229 SystemTray* tray) {
230 return nullptr;
231 }
232
233 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( 228 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem(
234 SystemTray* tray) { 229 SystemTray* tray) {
235 return nullptr; 230 return nullptr;
236 } 231 }
237 232
238 } // namespace ash 233 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698