| 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 #include "ash/system/tray/ime_info.h" | 7 #include "ash/system/tray/ime_info.h" |
| 8 | 8 |
| 9 namespace ash { | 9 namespace ash { |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 base::string16 SystemTrayDelegate::GetIMEManagedMessage() { | 25 base::string16 SystemTrayDelegate::GetIMEManagedMessage() { |
| 26 return base::string16(); | 26 return base::string16(); |
| 27 } | 27 } |
| 28 | 28 |
| 29 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() | 29 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() |
| 30 const { | 30 const { |
| 31 return nullptr; | 31 return nullptr; |
| 32 } | 32 } |
| 33 | 33 |
| 34 bool SystemTrayDelegate::GetSessionStartTime( | |
| 35 base::TimeTicks* session_start_time) { | |
| 36 return false; | |
| 37 } | |
| 38 | |
| 39 bool SystemTrayDelegate::GetSessionLengthLimit( | |
| 40 base::TimeDelta* session_length_limit) { | |
| 41 return false; | |
| 42 } | |
| 43 | |
| 44 void SystemTrayDelegate::ActiveUserWasChanged() {} | 34 void SystemTrayDelegate::ActiveUserWasChanged() {} |
| 45 | 35 |
| 46 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { | 36 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { |
| 47 return false; | 37 return false; |
| 48 } | 38 } |
| 49 | 39 |
| 50 } // namespace ash | 40 } // namespace ash |
| OLD | NEW |