| 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 void TestSystemTrayDelegate::GetDriveOperationStatusList( | 220 void TestSystemTrayDelegate::GetDriveOperationStatusList( |
| 221 ash::DriveOperationStatusList*) { | 221 ash::DriveOperationStatusList*) { |
| 222 } | 222 } |
| 223 | 223 |
| 224 void TestSystemTrayDelegate::ConfigureNetwork(const std::string& network_id) { | 224 void TestSystemTrayDelegate::ConfigureNetwork(const std::string& network_id) { |
| 225 } | 225 } |
| 226 | 226 |
| 227 void TestSystemTrayDelegate::ConnectToNetwork(const std::string& network_id) { | 227 void TestSystemTrayDelegate::ConnectToNetwork(const std::string& network_id) { |
| 228 } | 228 } |
| 229 | 229 |
| 230 void TestSystemTrayDelegate::AddBluetoothDevice() { | 230 void TestSystemTrayDelegate::ManageBluetoothDevices() { |
| 231 } | 231 } |
| 232 | 232 |
| 233 void TestSystemTrayDelegate::ToggleBluetooth() { | 233 void TestSystemTrayDelegate::ToggleBluetooth() { |
| 234 bluetooth_enabled_ = !bluetooth_enabled_; | 234 bluetooth_enabled_ = !bluetooth_enabled_; |
| 235 } | 235 } |
| 236 | 236 |
| 237 bool TestSystemTrayDelegate::IsBluetoothDiscovering() { | 237 bool TestSystemTrayDelegate::IsBluetoothDiscovering() { |
| 238 return false; | 238 return false; |
| 239 } | 239 } |
| 240 | 240 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 base::string16 TestSystemTrayDelegate::FormatTimeDuration( | 298 base::string16 TestSystemTrayDelegate::FormatTimeDuration( |
| 299 const base::TimeDelta& delta) const { | 299 const base::TimeDelta& delta) const { |
| 300 return base::string16(); | 300 return base::string16(); |
| 301 } | 301 } |
| 302 | 302 |
| 303 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { | 303 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { |
| 304 } | 304 } |
| 305 | 305 |
| 306 } // namespace test | 306 } // namespace test |
| 307 } // namespace ash | 307 } // namespace ash |
| OLD | NEW |