| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 bool SystemTrayDelegate::GetSessionStartTime( | 85 bool SystemTrayDelegate::GetSessionStartTime( |
| 86 base::TimeTicks* session_start_time) { | 86 base::TimeTicks* session_start_time) { |
| 87 return false; | 87 return false; |
| 88 } | 88 } |
| 89 | 89 |
| 90 bool SystemTrayDelegate::GetSessionLengthLimit( | 90 bool SystemTrayDelegate::GetSessionLengthLimit( |
| 91 base::TimeDelta* session_length_limit) { | 91 base::TimeDelta* session_length_limit) { |
| 92 return false; | 92 return false; |
| 93 } | 93 } |
| 94 | 94 |
| 95 int SystemTrayDelegate::GetSystemTrayMenuWidth() { | |
| 96 return 0; | |
| 97 } | |
| 98 | |
| 99 void SystemTrayDelegate::ActiveUserWasChanged() {} | 95 void SystemTrayDelegate::ActiveUserWasChanged() {} |
| 100 | 96 |
| 101 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { | 97 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { |
| 102 return false; | 98 return false; |
| 103 } | 99 } |
| 104 | 100 |
| 105 void SystemTrayDelegate::AddCustodianInfoTrayObserver( | 101 void SystemTrayDelegate::AddCustodianInfoTrayObserver( |
| 106 CustodianInfoTrayObserver* observer) {} | 102 CustodianInfoTrayObserver* observer) {} |
| 107 | 103 |
| 108 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( | 104 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( |
| 109 CustodianInfoTrayObserver* observer) {} | 105 CustodianInfoTrayObserver* observer) {} |
| 110 | 106 |
| 111 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 107 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 112 SystemTray* tray) { | 108 SystemTray* tray) { |
| 113 return nullptr; | 109 return nullptr; |
| 114 } | 110 } |
| 115 | 111 |
| 116 } // namespace ash | 112 } // namespace ash |
| OLD | NEW |