| Index: net/base/net_util_posix.cc
|
| diff --git a/net/base/net_util_posix.cc b/net/base/net_util_posix.cc
|
| index ec30c0481c960aec3581d049af96c759c8a25022..28c0d7edcfd573bff2dc901ad323f25d6ac0a35d 100644
|
| --- a/net/base/net_util_posix.cc
|
| +++ b/net/base/net_util_posix.cc
|
| @@ -238,4 +238,12 @@ WifiPHYLayerProtocol GetWifiPHYLayerProtocol() {
|
| return WIFI_PHY_LAYER_PROTOCOL_UNKNOWN;
|
| }
|
|
|
| +std::string GetNetworkOperatorID() {
|
| +#if defined(OS_ANDROID)
|
| + return android::GetNetworkOperatorID();
|
| +#else
|
| + return "";
|
| +#endif
|
| +}
|
| +
|
| } // namespace net
|
|
|