| OLD | NEW |
| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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() {} | 83 void SystemTrayDelegate::ShowSetTimeDialog() {} |
| 84 | 84 |
| 85 bool SystemTrayDelegate::ShouldShowDisplayNotification() { | |
| 86 return false; | |
| 87 } | |
| 88 | |
| 89 void SystemTrayDelegate::ShowEnterpriseInfo() {} | 85 void SystemTrayDelegate::ShowEnterpriseInfo() {} |
| 90 | 86 |
| 91 void SystemTrayDelegate::ShowUserLogin() {} | 87 void SystemTrayDelegate::ShowUserLogin() {} |
| 92 | 88 |
| 93 void SystemTrayDelegate::SignOut() {} | 89 void SystemTrayDelegate::SignOut() {} |
| 94 | 90 |
| 95 void SystemTrayDelegate::RequestRestartForUpdate() {} | 91 void SystemTrayDelegate::RequestRestartForUpdate() {} |
| 96 | 92 |
| 97 void SystemTrayDelegate::RequestShutdown() {} | 93 void SystemTrayDelegate::RequestShutdown() {} |
| 98 | 94 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 187 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 192 return nullptr; | 188 return nullptr; |
| 193 } | 189 } |
| 194 | 190 |
| 195 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 191 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 196 SystemTray* tray) { | 192 SystemTray* tray) { |
| 197 return nullptr; | 193 return nullptr; |
| 198 } | 194 } |
| 199 | 195 |
| 200 } // namespace ash | 196 } // namespace ash |
| OLD | NEW |