| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 } | 252 } |
| 253 | 253 |
| 254 void SystemTrayDelegate::ActiveUserWasChanged() { | 254 void SystemTrayDelegate::ActiveUserWasChanged() { |
| 255 } | 255 } |
| 256 | 256 |
| 257 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { | 257 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { |
| 258 return false; | 258 return false; |
| 259 } | 259 } |
| 260 | 260 |
| 261 tray::UserAccountsDelegate* SystemTrayDelegate::GetUserAccountsDelegate( | 261 tray::UserAccountsDelegate* SystemTrayDelegate::GetUserAccountsDelegate( |
| 262 const std::string& user_id) { | 262 const AccountId& /* account_id */) { |
| 263 return nullptr; | 263 return nullptr; |
| 264 } | 264 } |
| 265 | 265 |
| 266 void SystemTrayDelegate::AddCustodianInfoTrayObserver( | 266 void SystemTrayDelegate::AddCustodianInfoTrayObserver( |
| 267 CustodianInfoTrayObserver* observer) { | 267 CustodianInfoTrayObserver* observer) { |
| 268 } | 268 } |
| 269 | 269 |
| 270 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( | 270 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( |
| 271 CustodianInfoTrayObserver* observer) { | 271 CustodianInfoTrayObserver* observer) { |
| 272 } | 272 } |
| 273 | 273 |
| 274 void SystemTrayDelegate::AddShutdownPolicyObserver( | 274 void SystemTrayDelegate::AddShutdownPolicyObserver( |
| 275 ShutdownPolicyObserver* observer) { | 275 ShutdownPolicyObserver* observer) { |
| 276 } | 276 } |
| 277 | 277 |
| 278 void SystemTrayDelegate::RemoveShutdownPolicyObserver( | 278 void SystemTrayDelegate::RemoveShutdownPolicyObserver( |
| 279 ShutdownPolicyObserver* observer) { | 279 ShutdownPolicyObserver* observer) { |
| 280 } | 280 } |
| 281 | 281 |
| 282 void SystemTrayDelegate::ShouldRebootOnShutdown( | 282 void SystemTrayDelegate::ShouldRebootOnShutdown( |
| 283 const RebootOnShutdownCallback& callback) { | 283 const RebootOnShutdownCallback& callback) { |
| 284 } | 284 } |
| 285 | 285 |
| 286 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 286 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 287 return nullptr; | 287 return nullptr; |
| 288 } | 288 } |
| 289 | 289 |
| 290 } // namespace ash | 290 } // namespace ash |
| OLD | NEW |