| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 135 |
| 136 CastConfigDelegate* SystemTrayDelegate::GetCastConfigDelegate() { | 136 CastConfigDelegate* SystemTrayDelegate::GetCastConfigDelegate() { |
| 137 return nullptr; | 137 return nullptr; |
| 138 } | 138 } |
| 139 | 139 |
| 140 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() | 140 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() |
| 141 const { | 141 const { |
| 142 return nullptr; | 142 return nullptr; |
| 143 } | 143 } |
| 144 | 144 |
| 145 VolumeControlDelegate* SystemTrayDelegate::GetVolumeControlDelegate() const { | |
| 146 return nullptr; | |
| 147 } | |
| 148 | |
| 149 void SystemTrayDelegate::SetVolumeControlDelegate( | |
| 150 std::unique_ptr<VolumeControlDelegate> delegate) {} | |
| 151 | |
| 152 bool SystemTrayDelegate::GetSessionStartTime( | 145 bool SystemTrayDelegate::GetSessionStartTime( |
| 153 base::TimeTicks* session_start_time) { | 146 base::TimeTicks* session_start_time) { |
| 154 return false; | 147 return false; |
| 155 } | 148 } |
| 156 | 149 |
| 157 bool SystemTrayDelegate::GetSessionLengthLimit( | 150 bool SystemTrayDelegate::GetSessionLengthLimit( |
| 158 base::TimeDelta* session_length_limit) { | 151 base::TimeDelta* session_length_limit) { |
| 159 return false; | 152 return false; |
| 160 } | 153 } |
| 161 | 154 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 187 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 180 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 188 return nullptr; | 181 return nullptr; |
| 189 } | 182 } |
| 190 | 183 |
| 191 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 184 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 192 SystemTray* tray) { | 185 SystemTray* tray) { |
| 193 return nullptr; | 186 return nullptr; |
| 194 } | 187 } |
| 195 | 188 |
| 196 } // namespace ash | 189 } // namespace ash |
| OLD | NEW |