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

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

Issue 2400553002: ash: Remove broken display notification suppression when settings is open (Closed)
Patch Set: fix tests Created 4 years, 2 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 info->update_required = false; 72 info->update_required = false;
73 info->factory_reset_required = false; 73 info->factory_reset_required = false;
74 } 74 }
75 75
76 bool SystemTrayDelegate::ShouldShowSettings() { 76 bool SystemTrayDelegate::ShouldShowSettings() {
77 return false; 77 return false;
78 } 78 }
79 79
80 void SystemTrayDelegate::ShowSetTimeDialog() {} 80 void SystemTrayDelegate::ShowSetTimeDialog() {}
81 81
82 bool SystemTrayDelegate::ShouldShowDisplayNotification() {
83 return false;
84 }
85
86 void SystemTrayDelegate::ShowEnterpriseInfo() {} 82 void SystemTrayDelegate::ShowEnterpriseInfo() {}
87 83
88 void SystemTrayDelegate::ShowUserLogin() {} 84 void SystemTrayDelegate::ShowUserLogin() {}
89 85
90 void SystemTrayDelegate::SignOut() {} 86 void SystemTrayDelegate::SignOut() {}
91 87
92 void SystemTrayDelegate::RequestRestartForUpdate() {} 88 void SystemTrayDelegate::RequestRestartForUpdate() {}
93 89
94 void SystemTrayDelegate::RequestShutdown() {} 90 void SystemTrayDelegate::RequestShutdown() {}
95 91
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { 184 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const {
189 return nullptr; 185 return nullptr;
190 } 186 }
191 187
192 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( 188 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem(
193 SystemTray* tray) { 189 SystemTray* tray) {
194 return nullptr; 190 return nullptr;
195 } 191 }
196 192
197 } // namespace ash 193 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698