| 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 28 matching lines...) Expand all Loading... |
| 39 void SystemTrayDelegate::Initialize() {} | 39 void SystemTrayDelegate::Initialize() {} |
| 40 | 40 |
| 41 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const { | 41 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const { |
| 42 return LoginStatus::NOT_LOGGED_IN; | 42 return LoginStatus::NOT_LOGGED_IN; |
| 43 } | 43 } |
| 44 | 44 |
| 45 std::string SystemTrayDelegate::GetEnterpriseDomain() const { | 45 std::string SystemTrayDelegate::GetEnterpriseDomain() const { |
| 46 return std::string(); | 46 return std::string(); |
| 47 } | 47 } |
| 48 | 48 |
| 49 std::string SystemTrayDelegate::GetEnterpriseRealm() const { |
| 50 return std::string(); |
| 51 } |
| 52 |
| 49 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { | 53 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { |
| 50 return base::string16(); | 54 return base::string16(); |
| 51 } | 55 } |
| 52 | 56 |
| 53 std::string SystemTrayDelegate::GetSupervisedUserManager() const { | 57 std::string SystemTrayDelegate::GetSupervisedUserManager() const { |
| 54 return std::string(); | 58 return std::string(); |
| 55 } | 59 } |
| 56 | 60 |
| 57 base::string16 SystemTrayDelegate::GetSupervisedUserManagerName() const { | 61 base::string16 SystemTrayDelegate::GetSupervisedUserManagerName() const { |
| 58 return base::string16(); | 62 return base::string16(); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 184 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 181 return nullptr; | 185 return nullptr; |
| 182 } | 186 } |
| 183 | 187 |
| 184 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 188 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 185 SystemTray* tray) { | 189 SystemTray* tray) { |
| 186 return nullptr; | 190 return nullptr; |
| 187 } | 191 } |
| 188 | 192 |
| 189 } // namespace ash | 193 } // namespace ash |
| OLD | NEW |