| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 void TestSystemTrayDelegate::CancelDriveOperation(int32 operation_id) { | 205 void TestSystemTrayDelegate::CancelDriveOperation(int32 operation_id) { |
| 206 } | 206 } |
| 207 | 207 |
| 208 void TestSystemTrayDelegate::GetDriveOperationStatusList( | 208 void TestSystemTrayDelegate::GetDriveOperationStatusList( |
| 209 ash::DriveOperationStatusList*) { | 209 ash::DriveOperationStatusList*) { |
| 210 } | 210 } |
| 211 | 211 |
| 212 void TestSystemTrayDelegate::ConfigureNetwork(const std::string& network_id) { | 212 void TestSystemTrayDelegate::ConfigureNetwork(const std::string& network_id) { |
| 213 } | 213 } |
| 214 | 214 |
| 215 void TestSystemTrayDelegate::ConnectToNetwork(const std::string& network_id) { | 215 void TestSystemTrayDelegate::EnrollOrConfigureNetwork( |
| 216 const std::string& network_id, |
| 217 gfx::NativeWindow parent_window) { |
| 216 } | 218 } |
| 217 | 219 |
| 218 void TestSystemTrayDelegate::ManageBluetoothDevices() { | 220 void TestSystemTrayDelegate::ManageBluetoothDevices() { |
| 219 } | 221 } |
| 220 | 222 |
| 221 void TestSystemTrayDelegate::ToggleBluetooth() { | 223 void TestSystemTrayDelegate::ToggleBluetooth() { |
| 222 bluetooth_enabled_ = !bluetooth_enabled_; | 224 bluetooth_enabled_ = !bluetooth_enabled_; |
| 223 } | 225 } |
| 224 | 226 |
| 225 bool TestSystemTrayDelegate::IsBluetoothDiscovering() { | 227 bool TestSystemTrayDelegate::IsBluetoothDiscovering() { |
| 226 return false; | 228 return false; |
| 227 } | 229 } |
| 228 | 230 |
| 229 void TestSystemTrayDelegate::ShowMobileSimDialog() { | 231 void TestSystemTrayDelegate::ShowMobileSimDialog() { |
| 230 } | 232 } |
| 231 | 233 |
| 234 void TestSystemTrayDelegate::ShowMobileSetup(const std::string& network_id) { |
| 235 } |
| 236 |
| 232 void TestSystemTrayDelegate::ShowOtherWifi() { | 237 void TestSystemTrayDelegate::ShowOtherWifi() { |
| 233 } | 238 } |
| 234 | 239 |
| 235 void TestSystemTrayDelegate::ShowOtherVPN() { | 240 void TestSystemTrayDelegate::ShowOtherVPN() { |
| 236 } | 241 } |
| 237 | 242 |
| 238 void TestSystemTrayDelegate::ShowOtherCellular() { | 243 void TestSystemTrayDelegate::ShowOtherCellular() { |
| 239 } | 244 } |
| 240 | 245 |
| 241 bool TestSystemTrayDelegate::GetBluetoothAvailable() { | 246 bool TestSystemTrayDelegate::GetBluetoothAvailable() { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 base::string16 TestSystemTrayDelegate::FormatTimeDuration( | 291 base::string16 TestSystemTrayDelegate::FormatTimeDuration( |
| 287 const base::TimeDelta& delta) const { | 292 const base::TimeDelta& delta) const { |
| 288 return base::string16(); | 293 return base::string16(); |
| 289 } | 294 } |
| 290 | 295 |
| 291 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { | 296 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { |
| 292 } | 297 } |
| 293 | 298 |
| 294 } // namespace test | 299 } // namespace test |
| 295 } // namespace ash | 300 } // namespace ash |
| OLD | NEW |