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

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

Issue 1290723003: Stop including network_interfaces.h from net_util.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added one missing include Created 5 years, 4 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/network_interfaces.h"
6
5 #include "net/base/net_util.h" 7 #include "net/base/net_util.h"
6 8
7 #include <set> 9 #include <set>
8 #include <sys/types.h> 10 #include <sys/types.h>
9 11
10 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
11 13
12 #if !defined(OS_NACL) 14 #if !defined(OS_NACL)
13 #include "net/base/network_interfaces_posix.h" 15 #include "net/base/network_interfaces_posix.h"
14 #include <net/if.h> 16 #include <net/if.h>
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 WifiPHYLayerProtocol GetWifiPHYLayerProtocol() { 75 WifiPHYLayerProtocol GetWifiPHYLayerProtocol() {
74 return WIFI_PHY_LAYER_PROTOCOL_UNKNOWN; 76 return WIFI_PHY_LAYER_PROTOCOL_UNKNOWN;
75 } 77 }
76 78
77 scoped_ptr<ScopedWifiOptions> SetWifiOptions(int options) { 79 scoped_ptr<ScopedWifiOptions> SetWifiOptions(int options) {
78 return scoped_ptr<ScopedWifiOptions>(); 80 return scoped_ptr<ScopedWifiOptions>();
79 } 81 }
80 82
81 83
82 } // namespace net 84 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698