| 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 20 matching lines...) Expand all Loading... |
| 31 void SystemTrayDelegate::Initialize() {} | 31 void SystemTrayDelegate::Initialize() {} |
| 32 | 32 |
| 33 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const { | 33 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const { |
| 34 return LoginStatus::NOT_LOGGED_IN; | 34 return LoginStatus::NOT_LOGGED_IN; |
| 35 } | 35 } |
| 36 | 36 |
| 37 std::string SystemTrayDelegate::GetEnterpriseDomain() const { | 37 std::string SystemTrayDelegate::GetEnterpriseDomain() const { |
| 38 return std::string(); | 38 return std::string(); |
| 39 } | 39 } |
| 40 | 40 |
| 41 std::string SystemTrayDelegate::GetEnterpriseRealm() const { |
| 42 return std::string(); |
| 43 } |
| 44 |
| 41 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { | 45 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { |
| 42 return base::string16(); | 46 return base::string16(); |
| 43 } | 47 } |
| 44 | 48 |
| 45 std::string SystemTrayDelegate::GetSupervisedUserManager() const { | 49 std::string SystemTrayDelegate::GetSupervisedUserManager() const { |
| 46 return std::string(); | 50 return std::string(); |
| 47 } | 51 } |
| 48 | 52 |
| 49 base::string16 SystemTrayDelegate::GetSupervisedUserManagerName() const { | 53 base::string16 SystemTrayDelegate::GetSupervisedUserManagerName() const { |
| 50 return base::string16(); | 54 return base::string16(); |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 172 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 169 return nullptr; | 173 return nullptr; |
| 170 } | 174 } |
| 171 | 175 |
| 172 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 176 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 173 SystemTray* tray) { | 177 SystemTray* tray) { |
| 174 return nullptr; | 178 return nullptr; |
| 175 } | 179 } |
| 176 | 180 |
| 177 } // namespace ash | 181 } // namespace ash |
| OLD | NEW |