| 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 #include "ash/system/tray/system_tray_item.h" | 8 #include "ash/system/tray/system_tray_item.h" |
| 9 | 9 |
| 10 namespace ash { | 10 namespace ash { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 } | 24 } |
| 25 | 25 |
| 26 std::string SystemTrayDelegate::GetEnterpriseRealm() const { | 26 std::string SystemTrayDelegate::GetEnterpriseRealm() const { |
| 27 return std::string(); | 27 return std::string(); |
| 28 } | 28 } |
| 29 | 29 |
| 30 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { | 30 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { |
| 31 return base::string16(); | 31 return base::string16(); |
| 32 } | 32 } |
| 33 | 33 |
| 34 std::string SystemTrayDelegate::GetSupervisedUserManager() const { | |
| 35 return std::string(); | |
| 36 } | |
| 37 | |
| 38 base::string16 SystemTrayDelegate::GetSupervisedUserManagerName() const { | |
| 39 return base::string16(); | |
| 40 } | |
| 41 | |
| 42 base::string16 SystemTrayDelegate::GetSupervisedUserMessage() const { | |
| 43 return base::string16(); | |
| 44 } | |
| 45 | |
| 46 void SystemTrayDelegate::ShowEnterpriseInfo() {} | 34 void SystemTrayDelegate::ShowEnterpriseInfo() {} |
| 47 | 35 |
| 48 void SystemTrayDelegate::ShowUserLogin() {} | 36 void SystemTrayDelegate::ShowUserLogin() {} |
| 49 | 37 |
| 50 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} | 38 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} |
| 51 | 39 |
| 52 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {} | 40 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {} |
| 53 | 41 |
| 54 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} | 42 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} |
| 55 | 43 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 75 base::TimeDelta* session_length_limit) { | 63 base::TimeDelta* session_length_limit) { |
| 76 return false; | 64 return false; |
| 77 } | 65 } |
| 78 | 66 |
| 79 void SystemTrayDelegate::ActiveUserWasChanged() {} | 67 void SystemTrayDelegate::ActiveUserWasChanged() {} |
| 80 | 68 |
| 81 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { | 69 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { |
| 82 return false; | 70 return false; |
| 83 } | 71 } |
| 84 | 72 |
| 85 void SystemTrayDelegate::AddCustodianInfoTrayObserver( | |
| 86 CustodianInfoTrayObserver* observer) {} | |
| 87 | |
| 88 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( | |
| 89 CustodianInfoTrayObserver* observer) {} | |
| 90 | |
| 91 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 73 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 92 SystemTray* tray) { | 74 SystemTray* tray) { |
| 93 return nullptr; | 75 return nullptr; |
| 94 } | 76 } |
| 95 | 77 |
| 96 } // namespace ash | 78 } // namespace ash |
| OLD | NEW |