| Index: net/base/net_util_posix.cc
|
| diff --git a/net/base/net_util_posix.cc b/net/base/net_util_posix.cc
|
| index fbc3fcc8f6eac39f64150c69a3cec11d8eb43f51..1b2d06fa888215076616abdd3aa3fbb1cda1466a 100644
|
| --- a/net/base/net_util_posix.cc
|
| +++ b/net/base/net_util_posix.cc
|
| @@ -9,6 +9,7 @@
|
|
|
| #include "base/files/file_path.h"
|
| #include "base/logging.h"
|
| +#include "base/memory/scoped_ptr.h"
|
| #include "base/strings/string_number_conversions.h"
|
| #include "base/strings/string_tokenizer.h"
|
| #include "base/strings/string_util.h"
|
| @@ -276,4 +277,9 @@ WifiPHYLayerProtocol GetWifiPHYLayerProtocol() {
|
| return WIFI_PHY_LAYER_PROTOCOL_UNKNOWN;
|
| }
|
|
|
| +scoped_ptr<ScopedWifiOptions> SetWifiOptions(int options) {
|
| + return scoped_ptr<ScopedWifiOptions>();
|
| +}
|
| +
|
| +
|
| } // namespace net
|
|
|