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

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

Issue 722043004: Clean up wake on wifi handling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 6 years, 1 month 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
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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