| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 void SystemTrayDelegate::RemoveShutdownPolicyObserver( | 222 void SystemTrayDelegate::RemoveShutdownPolicyObserver( |
| 223 ShutdownPolicyObserver* observer) {} | 223 ShutdownPolicyObserver* observer) {} |
| 224 | 224 |
| 225 void SystemTrayDelegate::ShouldRebootOnShutdown( | 225 void SystemTrayDelegate::ShouldRebootOnShutdown( |
| 226 const RebootOnShutdownCallback& callback) {} | 226 const RebootOnShutdownCallback& callback) {} |
| 227 | 227 |
| 228 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 228 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 229 return nullptr; | 229 return nullptr; |
| 230 } | 230 } |
| 231 | 231 |
| 232 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateDisplayTrayItem( | |
| 233 SystemTray* tray) { | |
| 234 return nullptr; | |
| 235 } | |
| 236 | |
| 237 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 232 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 238 SystemTray* tray) { | 233 SystemTray* tray) { |
| 239 return nullptr; | 234 return nullptr; |
| 240 } | 235 } |
| 241 | 236 |
| 242 } // namespace ash | 237 } // namespace ash |
| OLD | NEW |