| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chromeos/network/fake_network_device_handler.h" | 5 #include "chromeos/network/fake_network_device_handler.h" |
| 6 | 6 |
| 7 namespace chromeos { | 7 namespace chromeos { |
| 8 | 8 |
| 9 FakeNetworkDeviceHandler::FakeNetworkDeviceHandler() {} | 9 FakeNetworkDeviceHandler::FakeNetworkDeviceHandler() {} |
| 10 | 10 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 const std::string& ip_or_mac_address, | 77 const std::string& ip_or_mac_address, |
| 78 bool enabled, | 78 bool enabled, |
| 79 const network_handler::StringResultCallback& callback, | 79 const network_handler::StringResultCallback& callback, |
| 80 const network_handler::ErrorCallback& error_callback) {} | 80 const network_handler::ErrorCallback& error_callback) {} |
| 81 | 81 |
| 82 void FakeNetworkDeviceHandler::GetWifiTDLSStatus( | 82 void FakeNetworkDeviceHandler::GetWifiTDLSStatus( |
| 83 const std::string& ip_or_mac_address, | 83 const std::string& ip_or_mac_address, |
| 84 const network_handler::StringResultCallback& callback, | 84 const network_handler::StringResultCallback& callback, |
| 85 const network_handler::ErrorCallback& error_callback) {} | 85 const network_handler::ErrorCallback& error_callback) {} |
| 86 | 86 |
| 87 void FakeNetworkDeviceHandler::AddWifiWakeOnPacketConnection( |
| 88 const net::IPEndPoint& ip_endpoint, |
| 89 const base::Closure& callback, |
| 90 const network_handler::ErrorCallback& error_callback) {} |
| 91 |
| 92 void FakeNetworkDeviceHandler::RemoveWifiWakeOnPacketConnection( |
| 93 const net::IPEndPoint& ip_endpoint, |
| 94 const base::Closure& callback, |
| 95 const network_handler::ErrorCallback& error_callback) {} |
| 96 |
| 97 void FakeNetworkDeviceHandler::RemoveAllWifiWakeOnPacketConnections( |
| 98 const base::Closure& callback, |
| 99 const network_handler::ErrorCallback& error_callback) {} |
| 100 |
| 87 } // namespace chromeos | 101 } // namespace chromeos |
| OLD | NEW |