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/system/tray/system_tray_delegate.h" | 5 #include "ash/system/tray/system_tray_delegate.h" |
6 | 6 |
7 namespace ash { | 7 namespace ash { |
8 | 8 |
9 NetworkIconInfo::NetworkIconInfo() | 9 NetworkIconInfo::NetworkIconInfo() |
10 : connecting(false), | 10 : connecting(false), |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 } | 255 } |
256 | 256 |
257 void SystemTrayDelegate::ActiveUserWasChanged() { | 257 void SystemTrayDelegate::ActiveUserWasChanged() { |
258 } | 258 } |
259 | 259 |
260 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { | 260 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { |
261 return false; | 261 return false; |
262 } | 262 } |
263 | 263 |
264 tray::UserAccountsDelegate* SystemTrayDelegate::GetUserAccountsDelegate( | 264 tray::UserAccountsDelegate* SystemTrayDelegate::GetUserAccountsDelegate( |
265 const std::string& user_id) { | 265 const user_manager::UserID& user_id) { |
266 return nullptr; | 266 return nullptr; |
267 } | 267 } |
268 | 268 |
269 void SystemTrayDelegate::AddCustodianInfoTrayObserver( | 269 void SystemTrayDelegate::AddCustodianInfoTrayObserver( |
270 CustodianInfoTrayObserver* observer) { | 270 CustodianInfoTrayObserver* observer) { |
271 } | 271 } |
272 | 272 |
273 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( | 273 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( |
274 CustodianInfoTrayObserver* observer) { | 274 CustodianInfoTrayObserver* observer) { |
275 } | 275 } |
276 | 276 |
277 void SystemTrayDelegate::AddShutdownPolicyObserver( | 277 void SystemTrayDelegate::AddShutdownPolicyObserver( |
278 ShutdownPolicyObserver* observer) { | 278 ShutdownPolicyObserver* observer) { |
279 } | 279 } |
280 | 280 |
281 void SystemTrayDelegate::RemoveShutdownPolicyObserver( | 281 void SystemTrayDelegate::RemoveShutdownPolicyObserver( |
282 ShutdownPolicyObserver* observer) { | 282 ShutdownPolicyObserver* observer) { |
283 } | 283 } |
284 | 284 |
285 void SystemTrayDelegate::ShouldRebootOnShutdown( | 285 void SystemTrayDelegate::ShouldRebootOnShutdown( |
286 const RebootOnShutdownCallback& callback) { | 286 const RebootOnShutdownCallback& callback) { |
287 } | 287 } |
288 | 288 |
289 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 289 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
290 return nullptr; | 290 return nullptr; |
291 } | 291 } |
292 | 292 |
293 } // namespace ash | 293 } // namespace ash |
OLD | NEW |