OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 | 130 |
131 // Enable/Disable EAP fields as appropriate based on selected EAP method. | 131 // Enable/Disable EAP fields as appropriate based on selected EAP method. |
132 void RefreshEapFields(); | 132 void RefreshEapFields(); |
133 | 133 |
134 // Enable/Disable "share this network" checkbox. | 134 // Enable/Disable "share this network" checkbox. |
135 void RefreshShareCheckbox(); | 135 void RefreshShareCheckbox(); |
136 | 136 |
137 // Updates the error text label. | 137 // Updates the error text label. |
138 void UpdateErrorLabel(); | 138 void UpdateErrorLabel(); |
139 | 139 |
140 CertLibrary* cert_library_; | |
141 | |
142 NetworkPropertyUIData eap_method_ui_data_; | 140 NetworkPropertyUIData eap_method_ui_data_; |
143 NetworkPropertyUIData phase_2_auth_ui_data_; | 141 NetworkPropertyUIData phase_2_auth_ui_data_; |
144 NetworkPropertyUIData user_cert_ui_data_; | 142 NetworkPropertyUIData user_cert_ui_data_; |
145 NetworkPropertyUIData server_ca_cert_ui_data_; | 143 NetworkPropertyUIData server_ca_cert_ui_data_; |
146 NetworkPropertyUIData identity_ui_data_; | 144 NetworkPropertyUIData identity_ui_data_; |
147 NetworkPropertyUIData identity_anonymous_ui_data_; | 145 NetworkPropertyUIData identity_anonymous_ui_data_; |
148 NetworkPropertyUIData save_credentials_ui_data_; | 146 NetworkPropertyUIData save_credentials_ui_data_; |
149 NetworkPropertyUIData passphrase_ui_data_; | 147 NetworkPropertyUIData passphrase_ui_data_; |
150 | 148 |
151 views::Textfield* ssid_textfield_; | 149 views::Textfield* ssid_textfield_; |
(...skipping 22 matching lines...) Expand all Loading... |
174 views::Textfield* passphrase_textfield_; | 172 views::Textfield* passphrase_textfield_; |
175 views::ToggleImageButton* passphrase_visible_button_; | 173 views::ToggleImageButton* passphrase_visible_button_; |
176 views::Label* error_label_; | 174 views::Label* error_label_; |
177 | 175 |
178 DISALLOW_COPY_AND_ASSIGN(WifiConfigView); | 176 DISALLOW_COPY_AND_ASSIGN(WifiConfigView); |
179 }; | 177 }; |
180 | 178 |
181 } // namespace chromeos | 179 } // namespace chromeos |
182 | 180 |
183 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ | 181 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ |
OLD | NEW |