| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 | 153 |
| 154 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( | 154 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( |
| 155 CustodianInfoTrayObserver* observer) {} | 155 CustodianInfoTrayObserver* observer) {} |
| 156 | 156 |
| 157 void SystemTrayDelegate::AddShutdownPolicyObserver( | 157 void SystemTrayDelegate::AddShutdownPolicyObserver( |
| 158 ShutdownPolicyObserver* observer) {} | 158 ShutdownPolicyObserver* observer) {} |
| 159 | 159 |
| 160 void SystemTrayDelegate::RemoveShutdownPolicyObserver( | 160 void SystemTrayDelegate::RemoveShutdownPolicyObserver( |
| 161 ShutdownPolicyObserver* observer) {} | 161 ShutdownPolicyObserver* observer) {} |
| 162 | 162 |
| 163 void SystemTrayDelegate::ShouldRebootOnShutdown( | 163 void SystemTrayDelegate::CheckIfRebootOnShutdown() {} |
| 164 const RebootOnShutdownCallback& callback) {} | |
| 165 | 164 |
| 166 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 165 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 167 return nullptr; | 166 return nullptr; |
| 168 } | 167 } |
| 169 | 168 |
| 170 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 169 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 171 SystemTray* tray) { | 170 SystemTray* tray) { |
| 172 return nullptr; | 171 return nullptr; |
| 173 } | 172 } |
| 174 | 173 |
| 175 } // namespace ash | 174 } // namespace ash |
| OLD | NEW |