| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 bool SystemTrayDelegate::GetSessionStartTime( | 143 bool SystemTrayDelegate::GetSessionStartTime( |
| 144 base::TimeTicks* session_start_time) { | 144 base::TimeTicks* session_start_time) { |
| 145 return false; | 145 return false; |
| 146 } | 146 } |
| 147 | 147 |
| 148 bool SystemTrayDelegate::GetSessionLengthLimit( | 148 bool SystemTrayDelegate::GetSessionLengthLimit( |
| 149 base::TimeDelta* session_length_limit) { | 149 base::TimeDelta* session_length_limit) { |
| 150 return false; | 150 return false; |
| 151 } | 151 } |
| 152 | 152 |
| 153 int SystemTrayDelegate::GetSystemTrayMenuWidth() { | |
| 154 return 0; | |
| 155 } | |
| 156 | |
| 157 void SystemTrayDelegate::ActiveUserWasChanged() {} | 153 void SystemTrayDelegate::ActiveUserWasChanged() {} |
| 158 | 154 |
| 159 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { | 155 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { |
| 160 return false; | 156 return false; |
| 161 } | 157 } |
| 162 | 158 |
| 163 void SystemTrayDelegate::AddCustodianInfoTrayObserver( | 159 void SystemTrayDelegate::AddCustodianInfoTrayObserver( |
| 164 CustodianInfoTrayObserver* observer) {} | 160 CustodianInfoTrayObserver* observer) {} |
| 165 | 161 |
| 166 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( | 162 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( |
| (...skipping 11 matching lines...) Expand all Loading... |
| 178 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 174 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 179 return nullptr; | 175 return nullptr; |
| 180 } | 176 } |
| 181 | 177 |
| 182 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 178 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 183 SystemTray* tray) { | 179 SystemTray* tray) { |
| 184 return nullptr; | 180 return nullptr; |
| 185 } | 181 } |
| 186 | 182 |
| 187 } // namespace ash | 183 } // namespace ash |
| OLD | NEW |