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

Side by Side Diff: net/base/net_util_posix.cc

Issue 566243005: Cast: Allow extension to control wifi options on windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "net/base/net_util.h" 5 #include "net/base/net_util.h"
6 6
7 #include <set> 7 #include <set>
8 #include <sys/types.h> 8 #include <sys/types.h>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 networks->push_back(network_infos[i].interface); 269 networks->push_back(network_infos[i].interface);
270 } 270 }
271 return true; 271 return true;
272 #endif 272 #endif
273 } 273 }
274 274
275 WifiPHYLayerProtocol GetWifiPHYLayerProtocol() { 275 WifiPHYLayerProtocol GetWifiPHYLayerProtocol() {
276 return WIFI_PHY_LAYER_PROTOCOL_UNKNOWN; 276 return WIFI_PHY_LAYER_PROTOCOL_UNKNOWN;
277 } 277 }
278 278
279 scoped_ptr<base::LifeTimeInterface> SetWifiOptions(int options) {
280 return scoped_ptr<base::LifeTimeInterface>();
281 }
282
283
279 } // namespace net 284 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698