| 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 25 matching lines...) Expand all Loading... |
| 36 } | 36 } |
| 37 | 37 |
| 38 base::string16 SystemTrayDelegate::GetSupervisedUserManagerName() const { | 38 base::string16 SystemTrayDelegate::GetSupervisedUserManagerName() const { |
| 39 return base::string16(); | 39 return base::string16(); |
| 40 } | 40 } |
| 41 | 41 |
| 42 base::string16 SystemTrayDelegate::GetSupervisedUserMessage() const { | 42 base::string16 SystemTrayDelegate::GetSupervisedUserMessage() const { |
| 43 return base::string16(); | 43 return base::string16(); |
| 44 } | 44 } |
| 45 | 45 |
| 46 bool SystemTrayDelegate::IsUserSupervised() const { | |
| 47 return false; | |
| 48 } | |
| 49 | |
| 50 bool SystemTrayDelegate::IsUserChild() const { | |
| 51 return false; | |
| 52 } | |
| 53 | |
| 54 void SystemTrayDelegate::ShowEnterpriseInfo() {} | 46 void SystemTrayDelegate::ShowEnterpriseInfo() {} |
| 55 | 47 |
| 56 void SystemTrayDelegate::ShowUserLogin() {} | 48 void SystemTrayDelegate::ShowUserLogin() {} |
| 57 | 49 |
| 58 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} | 50 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} |
| 59 | 51 |
| 60 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {} | 52 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {} |
| 61 | 53 |
| 62 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} | 54 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} |
| 63 | 55 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 | 87 |
| 96 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( | 88 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( |
| 97 CustodianInfoTrayObserver* observer) {} | 89 CustodianInfoTrayObserver* observer) {} |
| 98 | 90 |
| 99 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 91 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 100 SystemTray* tray) { | 92 SystemTray* tray) { |
| 101 return nullptr; | 93 return nullptr; |
| 102 } | 94 } |
| 103 | 95 |
| 104 } // namespace ash | 96 } // namespace ash |
| OLD | NEW |