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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 void TestSystemTrayDelegate::ShowNetworkSettings( | 120 void TestSystemTrayDelegate::ShowNetworkSettings( |
121 const std::string& service_path) { | 121 const std::string& service_path) { |
122 } | 122 } |
123 | 123 |
124 void TestSystemTrayDelegate::ShowBluetoothSettings() { | 124 void TestSystemTrayDelegate::ShowBluetoothSettings() { |
125 } | 125 } |
126 | 126 |
127 void TestSystemTrayDelegate::ShowDisplaySettings() { | 127 void TestSystemTrayDelegate::ShowDisplaySettings() { |
128 } | 128 } |
129 | 129 |
| 130 void TestSystemTrayDelegate::ShowChromeSlow() { |
| 131 } |
| 132 |
130 bool TestSystemTrayDelegate::ShouldShowDisplayNotification() { | 133 bool TestSystemTrayDelegate::ShouldShowDisplayNotification() { |
131 return should_show_display_notification_; | 134 return should_show_display_notification_; |
132 } | 135 } |
133 | 136 |
134 void TestSystemTrayDelegate::ShowDriveSettings() { | 137 void TestSystemTrayDelegate::ShowDriveSettings() { |
135 } | 138 } |
136 | 139 |
137 void TestSystemTrayDelegate::ShowIMESettings() { | 140 void TestSystemTrayDelegate::ShowIMESettings() { |
138 } | 141 } |
139 | 142 |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 base::string16 TestSystemTrayDelegate::FormatTimeDuration( | 294 base::string16 TestSystemTrayDelegate::FormatTimeDuration( |
292 const base::TimeDelta& delta) const { | 295 const base::TimeDelta& delta) const { |
293 return base::string16(); | 296 return base::string16(); |
294 } | 297 } |
295 | 298 |
296 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { | 299 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { |
297 } | 300 } |
298 | 301 |
299 } // namespace test | 302 } // namespace test |
300 } // namespace ash | 303 } // namespace ash |
OLD | NEW |