| 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 25 matching lines...) Expand all Loading... |
| 36 void SystemTrayDelegate::Initialize() {} | 36 void SystemTrayDelegate::Initialize() {} |
| 37 | 37 |
| 38 bool SystemTrayDelegate::GetTrayVisibilityOnStartup() { | 38 bool SystemTrayDelegate::GetTrayVisibilityOnStartup() { |
| 39 return false; | 39 return false; |
| 40 } | 40 } |
| 41 | 41 |
| 42 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const { | 42 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const { |
| 43 return LoginStatus::NOT_LOGGED_IN; | 43 return LoginStatus::NOT_LOGGED_IN; |
| 44 } | 44 } |
| 45 | 45 |
| 46 void SystemTrayDelegate::ChangeProfilePicture() {} | |
| 47 | |
| 48 std::string SystemTrayDelegate::GetEnterpriseDomain() const { | 46 std::string SystemTrayDelegate::GetEnterpriseDomain() const { |
| 49 return std::string(); | 47 return std::string(); |
| 50 } | 48 } |
| 51 | 49 |
| 52 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { | 50 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { |
| 53 return base::string16(); | 51 return base::string16(); |
| 54 } | 52 } |
| 55 | 53 |
| 56 std::string SystemTrayDelegate::GetSupervisedUserManager() const { | 54 std::string SystemTrayDelegate::GetSupervisedUserManager() const { |
| 57 return std::string(); | 55 return std::string(); |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 void SystemTrayDelegate::ShowAccessibilitySettings() {} | 112 void SystemTrayDelegate::ShowAccessibilitySettings() {} |
| 115 | 113 |
| 116 void SystemTrayDelegate::ShowPaletteHelp() {} | 114 void SystemTrayDelegate::ShowPaletteHelp() {} |
| 117 | 115 |
| 118 void SystemTrayDelegate::ShowPaletteSettings() {} | 116 void SystemTrayDelegate::ShowPaletteSettings() {} |
| 119 | 117 |
| 120 void SystemTrayDelegate::ShowPublicAccountInfo() {} | 118 void SystemTrayDelegate::ShowPublicAccountInfo() {} |
| 121 | 119 |
| 122 void SystemTrayDelegate::ShowEnterpriseInfo() {} | 120 void SystemTrayDelegate::ShowEnterpriseInfo() {} |
| 123 | 121 |
| 124 void SystemTrayDelegate::ShowSupervisedUserInfo() {} | |
| 125 | |
| 126 void SystemTrayDelegate::ShowUserLogin() {} | 122 void SystemTrayDelegate::ShowUserLogin() {} |
| 127 | 123 |
| 128 void SystemTrayDelegate::SignOut() {} | 124 void SystemTrayDelegate::SignOut() {} |
| 129 | 125 |
| 130 void SystemTrayDelegate::RequestRestartForUpdate() {} | 126 void SystemTrayDelegate::RequestRestartForUpdate() {} |
| 131 | 127 |
| 132 void SystemTrayDelegate::RequestShutdown() {} | 128 void SystemTrayDelegate::RequestShutdown() {} |
| 133 | 129 |
| 134 void SystemTrayDelegate::GetAvailableBluetoothDevices( | 130 void SystemTrayDelegate::GetAvailableBluetoothDevices( |
| 135 BluetoothDeviceList* list) {} | 131 BluetoothDeviceList* list) {} |
| (...skipping 29 matching lines...) Expand all Loading... |
| 165 } | 161 } |
| 166 | 162 |
| 167 bool SystemTrayDelegate::GetBluetoothEnabled() { | 163 bool SystemTrayDelegate::GetBluetoothEnabled() { |
| 168 return false; | 164 return false; |
| 169 } | 165 } |
| 170 | 166 |
| 171 bool SystemTrayDelegate::GetBluetoothDiscovering() { | 167 bool SystemTrayDelegate::GetBluetoothDiscovering() { |
| 172 return false; | 168 return false; |
| 173 } | 169 } |
| 174 | 170 |
| 175 void SystemTrayDelegate::ChangeProxySettings() {} | 171 void SystemTrayDelegate::ShowProxySettings() {} |
| 176 | 172 |
| 177 CastConfigDelegate* SystemTrayDelegate::GetCastConfigDelegate() { | 173 CastConfigDelegate* SystemTrayDelegate::GetCastConfigDelegate() { |
| 178 return nullptr; | 174 return nullptr; |
| 179 } | 175 } |
| 180 | 176 |
| 181 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() | 177 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() |
| 182 const { | 178 const { |
| 183 return nullptr; | 179 return nullptr; |
| 184 } | 180 } |
| 185 | 181 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 224 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 229 return nullptr; | 225 return nullptr; |
| 230 } | 226 } |
| 231 | 227 |
| 232 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 228 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 233 SystemTray* tray) { | 229 SystemTray* tray) { |
| 234 return nullptr; | 230 return nullptr; |
| 235 } | 231 } |
| 236 | 232 |
| 237 } // namespace ash | 233 } // namespace ash |
| OLD | NEW |