Chromium Code Reviews| Index: chrome/browser/ui/webui/options/chromeos/internet_options_handler.h |
| diff --git a/chrome/browser/ui/webui/options/chromeos/internet_options_handler.h b/chrome/browser/ui/webui/options/chromeos/internet_options_handler.h |
| index 9769dc7df31048f42de232519f825359898410dd..05005e71769dc1922bded0b853e184a883b1a9aa 100644 |
| --- a/chrome/browser/ui/webui/options/chromeos/internet_options_handler.h |
| +++ b/chrome/browser/ui/webui/options/chromeos/internet_options_handler.h |
| @@ -80,7 +80,7 @@ class InternetOptionsHandler |
| // be NULL. |
| void DoConnect(chromeos::Network* network); |
| - void SetActivationButtonVisibility( |
| + void SetCellularButtonsVisibility( |
| const chromeos::CellularNetwork* cellular, |
| base::DictionaryValue* dictionary, |
| const std::string& carrier_id); |
| @@ -123,6 +123,8 @@ class InternetOptionsHandler |
| base::DictionaryValue* shill_properties, |
| const chromeos::NetworkIPConfigVector& ipconfigs, |
| const std::string& hardware_address); |
| + void PopulateConnectionDetails(const chromeos::Network* network, |
| + base::DictionaryValue* dictionary); |
|
Evan Stade
2013/01/09 23:24:08
indent
rkc
2013/01/09 23:34:35
Done.
|
| void PopulateWifiDetails(const chromeos::WifiNetwork* wifi, |
| base::DictionaryValue* dictionary); |
| void PopulateWimaxDetails(const chromeos::WimaxNetwork* wimax, |
| @@ -146,6 +148,9 @@ class InternetOptionsHandler |
| void FillNetworkInfo(base::DictionaryValue* dictionary); |
| // Refreshes the display of network information. |
| void RefreshNetworkData(); |
| + // Updates the display of network connection |
|
Evan Stade
2013/01/09 23:24:08
wrap at 80
rkc
2013/01/09 23:34:35
Done.
|
| + // information for the details page if it's up. |
| + void UpdateConnectionData(const chromeos::Network* network); |
| // Updates the carrier change status. |
| void UpdateCarrier(bool success); |
| // Adds observers for wireless networks, if any, so that we can dynamically |