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 14 matching lines...) Expand all Loading... |
25 | 25 |
26 namespace views { | 26 namespace views { |
27 class Checkbox; | 27 class Checkbox; |
28 class Label; | 28 class Label; |
29 class ToggleImageButton; | 29 class ToggleImageButton; |
30 } | 30 } |
31 | 31 |
32 namespace chromeos { | 32 namespace chromeos { |
33 | 33 |
34 class NetworkState; | 34 class NetworkState; |
| 35 class PassphraseTextfield; |
35 | 36 |
36 namespace internal { | 37 namespace internal { |
37 class EAPMethodComboboxModel; | 38 class EAPMethodComboboxModel; |
38 class Phase2AuthComboboxModel; | 39 class Phase2AuthComboboxModel; |
39 class SecurityComboboxModel; | 40 class SecurityComboboxModel; |
40 class ServerCACertComboboxModel; | 41 class ServerCACertComboboxModel; |
41 class UserCertComboboxModel; | 42 class UserCertComboboxModel; |
42 } | 43 } |
43 | 44 |
44 // A dialog box for showing a password textfield. | 45 // A dialog box for showing a password textfield. |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 views::Label* identity_label_; | 184 views::Label* identity_label_; |
184 views::Textfield* identity_textfield_; | 185 views::Textfield* identity_textfield_; |
185 views::Label* identity_anonymous_label_; | 186 views::Label* identity_anonymous_label_; |
186 views::Textfield* identity_anonymous_textfield_; | 187 views::Textfield* identity_anonymous_textfield_; |
187 views::Checkbox* save_credentials_checkbox_; | 188 views::Checkbox* save_credentials_checkbox_; |
188 views::Checkbox* share_network_checkbox_; | 189 views::Checkbox* share_network_checkbox_; |
189 views::Label* shared_network_label_; | 190 views::Label* shared_network_label_; |
190 scoped_ptr<internal::SecurityComboboxModel> security_combobox_model_; | 191 scoped_ptr<internal::SecurityComboboxModel> security_combobox_model_; |
191 views::Combobox* security_combobox_; | 192 views::Combobox* security_combobox_; |
192 views::Label* passphrase_label_; | 193 views::Label* passphrase_label_; |
193 views::Textfield* passphrase_textfield_; | 194 PassphraseTextfield* passphrase_textfield_; |
194 views::ToggleImageButton* passphrase_visible_button_; | 195 views::ToggleImageButton* passphrase_visible_button_; |
195 views::Label* error_label_; | 196 views::Label* error_label_; |
196 | 197 |
197 base::WeakPtrFactory<WifiConfigView> weak_ptr_factory_; | 198 base::WeakPtrFactory<WifiConfigView> weak_ptr_factory_; |
198 | 199 |
199 DISALLOW_COPY_AND_ASSIGN(WifiConfigView); | 200 DISALLOW_COPY_AND_ASSIGN(WifiConfigView); |
200 }; | 201 }; |
201 | 202 |
202 } // namespace chromeos | 203 } // namespace chromeos |
203 | 204 |
204 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ | 205 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ |
OLD | NEW |