| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |