| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 } | 116 } |
| 117 | 117 |
| 118 bool SystemTrayDelegate::GetBluetoothEnabled() { | 118 bool SystemTrayDelegate::GetBluetoothEnabled() { |
| 119 return false; | 119 return false; |
| 120 } | 120 } |
| 121 | 121 |
| 122 bool SystemTrayDelegate::GetBluetoothDiscovering() { | 122 bool SystemTrayDelegate::GetBluetoothDiscovering() { |
| 123 return false; | 123 return false; |
| 124 } | 124 } |
| 125 | 125 |
| 126 CastConfigDelegate* SystemTrayDelegate::GetCastConfigDelegate() { | |
| 127 return nullptr; | |
| 128 } | |
| 129 | |
| 130 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() | 126 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() |
| 131 const { | 127 const { |
| 132 return nullptr; | 128 return nullptr; |
| 133 } | 129 } |
| 134 | 130 |
| 135 bool SystemTrayDelegate::GetSessionStartTime( | 131 bool SystemTrayDelegate::GetSessionStartTime( |
| 136 base::TimeTicks* session_start_time) { | 132 base::TimeTicks* session_start_time) { |
| 137 return false; | 133 return false; |
| 138 } | 134 } |
| 139 | 135 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 157 | 153 |
| 158 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( | 154 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( |
| 159 CustodianInfoTrayObserver* observer) {} | 155 CustodianInfoTrayObserver* observer) {} |
| 160 | 156 |
| 161 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 157 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 162 SystemTray* tray) { | 158 SystemTray* tray) { |
| 163 return nullptr; | 159 return nullptr; |
| 164 } | 160 } |
| 165 | 161 |
| 166 } // namespace ash | 162 } // namespace ash |
| OLD | NEW |