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_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <set> | 9 #include <set> |
10 | 10 |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 struct ConnectData { | 256 struct ConnectData { |
257 ConnectData(); | 257 ConnectData(); |
258 ~ConnectData(); | 258 ~ConnectData(); |
259 ConnectionSecurity security; | 259 ConnectionSecurity security; |
260 std::string service_name; // For example, SSID. | 260 std::string service_name; // For example, SSID. |
261 std::string username; | 261 std::string username; |
262 std::string passphrase; | 262 std::string passphrase; |
263 std::string otp; | 263 std::string otp; |
264 std::string group_name; | 264 std::string group_name; |
265 std::string server_hostname; | 265 std::string server_hostname; |
266 std::string server_ca_cert_nss_nickname; | 266 std::string server_ca_cert_pem; |
267 std::string client_cert_pkcs11_id; | 267 std::string client_cert_pkcs11_id; |
268 EAPMethod eap_method; | 268 EAPMethod eap_method; |
269 EAPPhase2Auth eap_auth; | 269 EAPPhase2Auth eap_auth; |
270 bool eap_use_system_cas; | 270 bool eap_use_system_cas; |
271 std::string eap_identity; | 271 std::string eap_identity; |
272 std::string eap_anonymous_identity; | 272 std::string eap_anonymous_identity; |
273 std::string psk_key; | 273 std::string psk_key; |
274 bool save_credentials; | 274 bool save_credentials; |
275 NetworkProfileType profile_type; | 275 NetworkProfileType profile_type; |
276 }; | 276 }; |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 // stray networks that shill still has on file, but are not known on the | 475 // stray networks that shill still has on file, but are not known on the |
476 // Chrome side. | 476 // Chrome side. |
477 NetworkSourceMap network_source_map_; | 477 NetworkSourceMap network_source_map_; |
478 | 478 |
479 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplBase); | 479 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplBase); |
480 }; | 480 }; |
481 | 481 |
482 } // namespace chromeos | 482 } // namespace chromeos |
483 | 483 |
484 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ | 484 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ |
OLD | NEW |