| Index: chromeos/network/network_util.h
|
| diff --git a/chromeos/network/network_util.h b/chromeos/network/network_util.h
|
| index b8fee4547e179efb5552d70704bebeaff67d22cd..ef692d32af6cabcc712ffee5b22ce82b6beee2b4 100644
|
| --- a/chromeos/network/network_util.h
|
| +++ b/chromeos/network/network_util.h
|
| @@ -33,6 +33,7 @@ class NetworkTypePattern;
|
| // Struct for passing wifi access point data.
|
| struct CHROMEOS_EXPORT WifiAccessPoint {
|
| WifiAccessPoint();
|
| + WifiAccessPoint(const WifiAccessPoint& other);
|
| ~WifiAccessPoint();
|
| std::string ssid; // The ssid of the WiFi node if available.
|
| std::string mac_address; // The mac address of the WiFi node.
|
| @@ -45,6 +46,7 @@ struct CHROMEOS_EXPORT WifiAccessPoint {
|
| // Struct for passing network scan result data.
|
| struct CHROMEOS_EXPORT CellularScanResult {
|
| CellularScanResult();
|
| + CellularScanResult(const CellularScanResult& other);
|
| ~CellularScanResult();
|
| std::string status; // The network's availability status. (One of "unknown",
|
| // "available", "current", or "forbidden")
|
|
|