Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(525)

Unified Diff: chrome/browser/chromeos/options/wifi_config_view.h

Issue 10407034: Picked up from stevenjb@: Added WimaxConfigView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review updates Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/options/wifi_config_view.h
diff --git a/chrome/browser/chromeos/options/wifi_config_view.h b/chrome/browser/chromeos/options/wifi_config_view.h
index 45d3971fa4e2d700a85504495ac58e01dad33b85..32145712e95e53c9d73cd71d27288dc99a5af637 100644
--- a/chrome/browser/chromeos/options/wifi_config_view.h
+++ b/chrome/browser/chromeos/options/wifi_config_view.h
@@ -74,6 +74,18 @@ class WifiConfigView : public ChildNetworkConfigView,
virtual void Cancel() OVERRIDE;
virtual void InitFocus() OVERRIDE;
+ // Parses a WiFi UI |property| from the ONC associated with |network|. |key|
+ // is the property name within the ONC WiFi dictionary.
+ static void ParseWiFiUIProperty(NetworkPropertyUIData* property_ui_data,
+ Network* network,
+ const std::string& key);
+
+ // Parses a WiFi EAP UI |property| from the ONC associated with |network|.
+ // |key| is the property name within the ONC WiFi.EAP dictionary.
+ static void ParseWiFiEAPUIProperty(NetworkPropertyUIData* property_ui_data,
+ Network* network,
+ const std::string& key);
+
private:
// Initializes UI. If |show_8021x| includes 802.1x config options.
void Init(WifiNetwork* wifi, bool show_8021x);
@@ -126,18 +138,6 @@ class WifiConfigView : public ChildNetworkConfigView,
// Updates the error text label.
void UpdateErrorLabel();
- // Parses a WiFi UI |property| from the ONC associated with |network|. |key|
- // is the property name within the ONC WiFi dictionary.
- void ParseWiFiUIProperty(NetworkPropertyUIData* property_ui_data,
- Network* network,
- const std::string& key);
-
- // Parses a WiFi EAP UI |property| from the ONC associated with |network|.
- // |key| is the property name within the ONC WiFi.EAP dictionary.
- void ParseWiFiEAPUIProperty(NetworkPropertyUIData* property_ui_data,
- Network* network,
- const std::string& key);
-
CertLibrary* cert_library_;
NetworkPropertyUIData eap_method_ui_data_;

Powered by Google App Engine
This is Rietveld 408576698