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