| 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 17 matching lines...) Expand all Loading... |
| 28 factory_reset_required(false) {} | 28 factory_reset_required(false) {} |
| 29 | 29 |
| 30 UpdateInfo::~UpdateInfo() {} | 30 UpdateInfo::~UpdateInfo() {} |
| 31 | 31 |
| 32 SystemTrayDelegate::SystemTrayDelegate() {} | 32 SystemTrayDelegate::SystemTrayDelegate() {} |
| 33 | 33 |
| 34 SystemTrayDelegate::~SystemTrayDelegate() {} | 34 SystemTrayDelegate::~SystemTrayDelegate() {} |
| 35 | 35 |
| 36 void SystemTrayDelegate::Initialize() {} | 36 void SystemTrayDelegate::Initialize() {} |
| 37 | 37 |
| 38 bool SystemTrayDelegate::GetTrayVisibilityOnStartup() { | |
| 39 return false; | |
| 40 } | |
| 41 | |
| 42 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const { | 38 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const { |
| 43 return LoginStatus::NOT_LOGGED_IN; | 39 return LoginStatus::NOT_LOGGED_IN; |
| 44 } | 40 } |
| 45 | 41 |
| 46 std::string SystemTrayDelegate::GetEnterpriseDomain() const { | 42 std::string SystemTrayDelegate::GetEnterpriseDomain() const { |
| 47 return std::string(); | 43 return std::string(); |
| 48 } | 44 } |
| 49 | 45 |
| 50 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { | 46 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { |
| 51 return base::string16(); | 47 return base::string16(); |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 190 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 195 return nullptr; | 191 return nullptr; |
| 196 } | 192 } |
| 197 | 193 |
| 198 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 194 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 199 SystemTray* tray) { | 195 SystemTray* tray) { |
| 200 return nullptr; | 196 return nullptr; |
| 201 } | 197 } |
| 202 | 198 |
| 203 } // namespace ash | 199 } // namespace ash |
| OLD | NEW |