| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 | 66 |
| 67 void FakeNetworkDeviceHandler::ChangePin( | 67 void FakeNetworkDeviceHandler::ChangePin( |
| 68 const std::string& device_path, | 68 const std::string& device_path, |
| 69 const std::string& old_pin, | 69 const std::string& old_pin, |
| 70 const std::string& new_pin, | 70 const std::string& new_pin, |
| 71 const base::Closure& callback, | 71 const base::Closure& callback, |
| 72 const network_handler::ErrorCallback& error_callback) {} | 72 const network_handler::ErrorCallback& error_callback) {} |
| 73 | 73 |
| 74 void FakeNetworkDeviceHandler::SetCellularAllowRoaming(bool allow_roaming) {} | 74 void FakeNetworkDeviceHandler::SetCellularAllowRoaming(bool allow_roaming) {} |
| 75 | 75 |
| 76 void FakeNetworkDeviceHandler::SetWifiTDLSEnabled( |
| 77 const std::string& ip_or_mac_address, |
| 78 bool enabled, |
| 79 const network_handler::StringResultCallback& callback, |
| 80 const network_handler::ErrorCallback& error_callback) {} |
| 81 |
| 82 void FakeNetworkDeviceHandler::GetWifiTDLSStatus( |
| 83 const std::string& ip_or_mac_address, |
| 84 const network_handler::StringResultCallback& callback, |
| 85 const network_handler::ErrorCallback& error_callback) {} |
| 86 |
| 76 } // namespace chromeos | 87 } // namespace chromeos |
| OLD | NEW |