OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_VPN_CONFIG_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 const std::string GetUsername() const; | 92 const std::string GetUsername() const; |
93 const std::string GetUserPassphrase() const; | 93 const std::string GetUserPassphrase() const; |
94 const std::string GetServerCACertNssNickname() const; | 94 const std::string GetServerCACertNssNickname() const; |
95 const std::string GetUserCertID() const; | 95 const std::string GetUserCertID() const; |
96 | 96 |
97 CertLibrary* cert_library_; | 97 CertLibrary* cert_library_; |
98 | 98 |
99 std::string server_hostname_; | 99 std::string server_hostname_; |
100 string16 service_name_from_server_; | 100 string16 service_name_from_server_; |
101 bool service_text_modified_; | 101 bool service_text_modified_; |
102 VirtualNetwork::ProviderType provider_type_; | 102 ProviderType provider_type_; |
103 | 103 |
104 views::Label* server_text_; | 104 views::Label* server_text_; |
105 views::Textfield* server_textfield_; | 105 views::Textfield* server_textfield_; |
106 views::Label* service_text_; | 106 views::Label* service_text_; |
107 views::Textfield* service_textfield_; | 107 views::Textfield* service_textfield_; |
108 views::Combobox* provider_type_combobox_; | 108 views::Combobox* provider_type_combobox_; |
109 views::Label* provider_type_text_label_; | 109 views::Label* provider_type_text_label_; |
110 views::Label* psk_passphrase_label_; | 110 views::Label* psk_passphrase_label_; |
111 views::Textfield* psk_passphrase_textfield_; | 111 views::Textfield* psk_passphrase_textfield_; |
112 views::Label* user_cert_label_; | 112 views::Label* user_cert_label_; |
113 views::Combobox* user_cert_combobox_; | 113 views::Combobox* user_cert_combobox_; |
114 views::Label* server_ca_cert_label_; | 114 views::Label* server_ca_cert_label_; |
115 views::Combobox* server_ca_cert_combobox_; | 115 views::Combobox* server_ca_cert_combobox_; |
116 views::Textfield* username_textfield_; | 116 views::Textfield* username_textfield_; |
117 views::Textfield* user_passphrase_textfield_; | 117 views::Textfield* user_passphrase_textfield_; |
118 views::Label* error_label_; | 118 views::Label* error_label_; |
119 | 119 |
120 DISALLOW_COPY_AND_ASSIGN(VPNConfigView); | 120 DISALLOW_COPY_AND_ASSIGN(VPNConfigView); |
121 }; | 121 }; |
122 | 122 |
123 } // namespace chromeos | 123 } // namespace chromeos |
124 | 124 |
125 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_ | 125 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_ |
OLD | NEW |