Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Side by Side Diff: chromeos/network/fake_network_device_handler.cc

Issue 156353002: Implement networkingPrivate.setWifiTDLSEnabledState (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable TDLS tests on non-chromeos Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chromeos/network/fake_network_device_handler.h ('k') | chromeos/network/network_device_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698