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/test_system_tray_delegate.h" | 5 #include "ash/system/tray/test_system_tray_delegate.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "ash/session_state_delegate.h" | 9 #include "ash/session_state_delegate.h" |
10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 } | 97 } |
98 | 98 |
99 const base::string16 TestSystemTrayDelegate::GetEnterpriseMessage() const { | 99 const base::string16 TestSystemTrayDelegate::GetEnterpriseMessage() const { |
100 return string16(); | 100 return string16(); |
101 } | 101 } |
102 | 102 |
103 const std::string TestSystemTrayDelegate::GetLocallyManagedUserManager() const { | 103 const std::string TestSystemTrayDelegate::GetLocallyManagedUserManager() const { |
104 return std::string(); | 104 return std::string(); |
105 } | 105 } |
106 | 106 |
| 107 const base::string16 TestSystemTrayDelegate::GetLocallyManagedUserManagerName() |
| 108 const { |
| 109 return string16(); |
| 110 } |
| 111 |
107 const base::string16 TestSystemTrayDelegate::GetLocallyManagedUserMessage() | 112 const base::string16 TestSystemTrayDelegate::GetLocallyManagedUserMessage() |
108 const { | 113 const { |
109 return string16(); | 114 return string16(); |
110 } | 115 } |
111 | 116 |
112 bool TestSystemTrayDelegate::SystemShouldUpgrade() const { | 117 bool TestSystemTrayDelegate::SystemShouldUpgrade() const { |
113 return true; | 118 return true; |
114 } | 119 } |
115 | 120 |
116 base::HourClockType TestSystemTrayDelegate::GetHourClockType() const { | 121 base::HourClockType TestSystemTrayDelegate::GetHourClockType() const { |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 base::string16 TestSystemTrayDelegate::FormatTimeDuration( | 293 base::string16 TestSystemTrayDelegate::FormatTimeDuration( |
289 const base::TimeDelta& delta) const { | 294 const base::TimeDelta& delta) const { |
290 return base::string16(); | 295 return base::string16(); |
291 } | 296 } |
292 | 297 |
293 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { | 298 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { |
294 } | 299 } |
295 | 300 |
296 } // namespace test | 301 } // namespace test |
297 } // namespace ash | 302 } // namespace ash |
OLD | NEW |