| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 // The <code>chrome.networkingPrivate</code> API is used for configuring | 5 // The <code>chrome.networkingPrivate</code> API is used for configuring |
| 6 // network connections (Cellular, Ethernet, VPN, WiFi or WiMAX). This private | 6 // network connections (Cellular, Ethernet, VPN, WiFi or WiMAX). This private |
| 7 // API is only valid if called from a browser or app associated with the | 7 // API is only valid if called from a browser or app associated with the |
| 8 // primary user. See the Open Network Configuration (ONC) documentation for | 8 // primary user. See the Open Network Configuration (ONC) documentation for |
| 9 // descriptions of properties: | 9 // descriptions of properties: |
| 10 // <a href="https://code.google.com/p/chromium/codesearch#chromium/src/component
s/onc/docs/onc_spec.html"> | 10 // <a href="https://code.google.com/p/chromium/codesearch#chromium/src/component
s/onc/docs/onc_spec.html"> |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 XAUTHProperties? XAUTH; | 308 XAUTHProperties? XAUTH; |
| 309 }; | 309 }; |
| 310 | 310 |
| 311 dictionary ManagedIPSecProperties { | 311 dictionary ManagedIPSecProperties { |
| 312 ManagedDOMString AuthenticationType; | 312 ManagedDOMString AuthenticationType; |
| 313 ManagedCertificatePattern? ClientCertPattern; | 313 ManagedCertificatePattern? ClientCertPattern; |
| 314 ManagedDOMString? ClientCertRef; | 314 ManagedDOMString? ClientCertRef; |
| 315 ManagedDOMString? ClientCertType; | 315 ManagedDOMString? ClientCertType; |
| 316 ManagedEAPProperties? EAP; | 316 ManagedEAPProperties? EAP; |
| 317 ManagedDOMString? Group; | 317 ManagedDOMString? Group; |
| 318 ManagedLong IKEVersion; | 318 ManagedLong? IKEVersion; |
| 319 ManagedDOMString? PSK; | 319 ManagedDOMString? PSK; |
| 320 ManagedBoolean? SaveCredentials; | 320 ManagedBoolean? SaveCredentials; |
| 321 ManagedDOMStringList? ServerCARefs; | 321 ManagedDOMStringList? ServerCARefs; |
| 322 ManagedXAUTHProperties? XAUTH; | 322 ManagedXAUTHProperties? XAUTH; |
| 323 }; | 323 }; |
| 324 | 324 |
| 325 dictionary L2TPProperties { | 325 dictionary L2TPProperties { |
| 326 boolean? LcpEchoDisabled; | 326 boolean? LcpEchoDisabled; |
| 327 DOMString? Password; | 327 DOMString? Password; |
| 328 boolean? SaveCredentials; | 328 boolean? SaveCredentials; |
| (...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1044 // Fired when the list of devices has changed or any device state properties | 1044 // Fired when the list of devices has changed or any device state properties |
| 1045 // have changed. | 1045 // have changed. |
| 1046 static void onDeviceStateListChanged(); | 1046 static void onDeviceStateListChanged(); |
| 1047 | 1047 |
| 1048 // Fired when a portal detection for a network completes. Sends the guid of | 1048 // Fired when a portal detection for a network completes. Sends the guid of |
| 1049 // the network and the corresponding captive portal status. | 1049 // the network and the corresponding captive portal status. |
| 1050 static void onPortalDetectionCompleted(DOMString networkGuid, | 1050 static void onPortalDetectionCompleted(DOMString networkGuid, |
| 1051 CaptivePortalStatus status); | 1051 CaptivePortalStatus status); |
| 1052 }; | 1052 }; |
| 1053 }; | 1053 }; |
| OLD | NEW |