Chromium Code Reviews| Index: chromeos/network/network_util.h |
| diff --git a/chromeos/network/network_util.h b/chromeos/network/network_util.h |
| index 7c952383a593ac17dce63ffe6d9c81dff959dbf6..302bf4f55cbd2cda3d18e0f024ba2181ff353717 100644 |
| --- a/chromeos/network/network_util.h |
| +++ b/chromeos/network/network_util.h |
| @@ -19,8 +19,14 @@ |
| #include "base/values.h" |
| #include "chromeos/chromeos_export.h" |
| +namespace base { |
| +class ListValue; |
| +} |
| + |
| namespace chromeos { |
| +class NetworkTypePattern; |
| + |
| // Struct for passing wifi access point data. |
| struct CHROMEOS_EXPORT WifiAccessPoint { |
| WifiAccessPoint(); |
| @@ -79,6 +85,11 @@ CHROMEOS_EXPORT int32 NetmaskToPrefixLength(const std::string& netmask); |
| CHROMEOS_EXPORT bool ParseCellularScanResults( |
| const base::ListValue& list, std::vector<CellularScanResult>* scan_results); |
| +// Retrieves the list of network services and translates each into a list of |
| +// ONC dictionaries using TranslateShillServiceToONCPart. |
|
pneubeck (no reviews)
2014/05/12 13:37:07
reference NetworkStateHandler::NetworkList (so tha
stevenjb
2014/05/13 01:19:00
This actually changes in the getNetworks CL to spe
|
| +CHROMEOS_EXPORT scoped_ptr<base::ListValue> TranslateNetworkListToONC( |
| + NetworkTypePattern pattern); |
| + |
| } // namespace network_util |
| } // namespace chromeos |