| 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 { |
| 11 | 11 |
| 12 SystemTrayDelegate::SystemTrayDelegate() {} | 12 SystemTrayDelegate::SystemTrayDelegate() {} |
| 13 | 13 |
| 14 SystemTrayDelegate::~SystemTrayDelegate() {} | 14 SystemTrayDelegate::~SystemTrayDelegate() {} |
| 15 | 15 |
| 16 void SystemTrayDelegate::Initialize() {} | 16 void SystemTrayDelegate::Initialize() {} |
| 17 | 17 |
| 18 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const { | 18 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const { |
| 19 return LoginStatus::NOT_LOGGED_IN; | 19 return LoginStatus::NOT_LOGGED_IN; |
| 20 } | 20 } |
| 21 | 21 |
| 22 std::string SystemTrayDelegate::GetEnterpriseDomain() const { | |
| 23 return std::string(); | |
| 24 } | |
| 25 | |
| 26 std::string SystemTrayDelegate::GetEnterpriseRealm() const { | |
| 27 return std::string(); | |
| 28 } | |
| 29 | |
| 30 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { | |
| 31 return base::string16(); | |
| 32 } | |
| 33 | |
| 34 void SystemTrayDelegate::ShowEnterpriseInfo() {} | |
| 35 | |
| 36 void SystemTrayDelegate::ShowUserLogin() {} | 22 void SystemTrayDelegate::ShowUserLogin() {} |
| 37 | 23 |
| 38 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} | 24 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} |
| 39 | 25 |
| 40 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {} | 26 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {} |
| 41 | 27 |
| 42 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} | 28 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} |
| 43 | 29 |
| 44 base::string16 SystemTrayDelegate::GetIMEManagedMessage() { | 30 base::string16 SystemTrayDelegate::GetIMEManagedMessage() { |
| 45 return base::string16(); | 31 return base::string16(); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 69 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { | 55 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { |
| 70 return false; | 56 return false; |
| 71 } | 57 } |
| 72 | 58 |
| 73 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 59 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 74 SystemTray* tray) { | 60 SystemTray* tray) { |
| 75 return nullptr; | 61 return nullptr; |
| 76 } | 62 } |
| 77 | 63 |
| 78 } // namespace ash | 64 } // namespace ash |
| OLD | NEW |