| 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::ShowSlow() { |
| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 base::string16 TestSystemTrayDelegate::FormatTimeDuration( | 289 base::string16 TestSystemTrayDelegate::FormatTimeDuration( |
| 287 const base::TimeDelta& delta) const { | 290 const base::TimeDelta& delta) const { |
| 288 return base::string16(); | 291 return base::string16(); |
| 289 } | 292 } |
| 290 | 293 |
| 291 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { | 294 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { |
| 292 } | 295 } |
| 293 | 296 |
| 294 } // namespace test | 297 } // namespace test |
| 295 } // namespace ash | 298 } // namespace ash |
| OLD | NEW |