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

Side by Side Diff: chrome/browser/chromeos/options/vpn_config_view.h

Issue 8726008: Disable network "Connect" dialog UI in case of policy-managed networks. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 // Initialized in Init(): 107 // Initialized in Init():
108 108
109 ProviderType provider_type_; 109 ProviderType provider_type_;
110 110
111 bool enable_psk_passphrase_; 111 bool enable_psk_passphrase_;
112 bool enable_user_cert_; 112 bool enable_user_cert_;
113 bool enable_server_ca_cert_; 113 bool enable_server_ca_cert_;
114 bool enable_otp_; 114 bool enable_otp_;
115 bool enable_group_name_; 115 bool enable_group_name_;
116 116
117 NetworkPropertyUIData ca_cert_ui_data_;
118 NetworkPropertyUIData psk_passphrase_ui_data_;
119 NetworkPropertyUIData user_cert_ui_data_;
120 NetworkPropertyUIData username_ui_data_;
121 NetworkPropertyUIData user_passphrase_ui_data_;
122 NetworkPropertyUIData group_name_ui_data_;
123
117 views::Textfield* server_textfield_; 124 views::Textfield* server_textfield_;
118 views::Label* service_text_; 125 views::Label* service_text_;
119 views::Textfield* service_textfield_; 126 views::Textfield* service_textfield_;
120 views::Combobox* provider_type_combobox_; 127 views::Combobox* provider_type_combobox_;
121 views::Label* provider_type_text_label_; 128 views::Label* provider_type_text_label_;
122 views::Label* psk_passphrase_label_; 129 views::Label* psk_passphrase_label_;
123 views::Textfield* psk_passphrase_textfield_; 130 views::Textfield* psk_passphrase_textfield_;
124 views::Label* user_cert_label_; 131 views::Label* user_cert_label_;
125 views::Combobox* user_cert_combobox_; 132 views::Combobox* user_cert_combobox_;
126 views::Label* server_ca_cert_label_; 133 views::Label* server_ca_cert_label_;
127 views::Combobox* server_ca_cert_combobox_; 134 views::Combobox* server_ca_cert_combobox_;
128 views::Textfield* username_textfield_; 135 views::Textfield* username_textfield_;
129 views::Textfield* user_passphrase_textfield_; 136 views::Textfield* user_passphrase_textfield_;
130 views::Label* otp_label_; 137 views::Label* otp_label_;
131 views::Textfield* otp_textfield_; 138 views::Textfield* otp_textfield_;
132 views::Label* group_name_label_; 139 views::Label* group_name_label_;
133 views::Textfield* group_name_textfield_; 140 views::Textfield* group_name_textfield_;
134 views::Label* error_label_; 141 views::Label* error_label_;
135 142
136 DISALLOW_COPY_AND_ASSIGN(VPNConfigView); 143 DISALLOW_COPY_AND_ASSIGN(VPNConfigView);
137 }; 144 };
138 145
139 } // namespace chromeos 146 } // namespace chromeos
140 147
141 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_ 148 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/options/network_config_view.cc ('k') | chrome/browser/chromeos/options/vpn_config_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698