| 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 namespace ash { | 7 namespace ash { |
| 8 | 8 |
| 9 NetworkIconInfo::NetworkIconInfo() | 9 NetworkIconInfo::NetworkIconInfo() |
| 10 : connecting(false), | 10 : connecting(false), |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 return user::LOGGED_IN_NONE; | 64 return user::LOGGED_IN_NONE; |
| 65 } | 65 } |
| 66 | 66 |
| 67 void SystemTrayDelegate::ChangeProfilePicture() { | 67 void SystemTrayDelegate::ChangeProfilePicture() { |
| 68 } | 68 } |
| 69 | 69 |
| 70 std::string SystemTrayDelegate::GetEnterpriseDomain() const { | 70 std::string SystemTrayDelegate::GetEnterpriseDomain() const { |
| 71 return std::string(); | 71 return std::string(); |
| 72 } | 72 } |
| 73 | 73 |
| 74 const base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { | 74 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { |
| 75 return base::string16(); | 75 return base::string16(); |
| 76 } | 76 } |
| 77 | 77 |
| 78 const std::string SystemTrayDelegate::GetSupervisedUserManager() const { | 78 std::string SystemTrayDelegate::GetSupervisedUserManager() const { |
| 79 return std::string(); | 79 return std::string(); |
| 80 } | 80 } |
| 81 | 81 |
| 82 const base::string16 SystemTrayDelegate::GetSupervisedUserManagerName() const { | 82 base::string16 SystemTrayDelegate::GetSupervisedUserManagerName() const { |
| 83 return base::string16(); | 83 return base::string16(); |
| 84 } | 84 } |
| 85 | 85 |
| 86 const base::string16 SystemTrayDelegate::GetSupervisedUserMessage() const { | 86 base::string16 SystemTrayDelegate::GetSupervisedUserMessage() const { |
| 87 return base::string16(); | 87 return base::string16(); |
| 88 } | 88 } |
| 89 | 89 |
| 90 bool SystemTrayDelegate::IsUserSupervised() const { | 90 bool SystemTrayDelegate::IsUserSupervised() const { |
| 91 return false; | 91 return false; |
| 92 } | 92 } |
| 93 | 93 |
| 94 bool SystemTrayDelegate::IsUserChild() const { | 94 bool SystemTrayDelegate::IsUserChild() const { |
| 95 return false; | 95 return false; |
| 96 } | 96 } |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 | 281 |
| 282 void SystemTrayDelegate::ShouldRebootOnShutdown( | 282 void SystemTrayDelegate::ShouldRebootOnShutdown( |
| 283 const RebootOnShutdownCallback& callback) { | 283 const RebootOnShutdownCallback& callback) { |
| 284 } | 284 } |
| 285 | 285 |
| 286 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 286 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 287 return nullptr; | 287 return nullptr; |
| 288 } | 288 } |
| 289 | 289 |
| 290 } // namespace ash | 290 } // namespace ash |
| OLD | NEW |