| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 // <p> | 5 // <p> |
| 6 // The <code>chrome.networking.onc</code> API is used for configuring | 6 // The <code>chrome.networking.onc</code> API is used for configuring |
| 7 // network connections (Cellular, Ethernet, VPN, WiFi or WiMAX). | 7 // network connections (Cellular, Ethernet, VPN, WiFi or WiMAX). |
| 8 // This API is available in Chrome OS kiosk sessions. | 8 // This API is available in Chrome OS kiosk sessions. |
| 9 // </p> | 9 // </p> |
| 10 // <p> | 10 // <p> |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 // List of certificate issuer CA certificates. A certificate must be signed | 252 // List of certificate issuer CA certificates. A certificate must be signed |
| 253 // by one of them in order to match this pattern. | 253 // by one of them in order to match this pattern. |
| 254 DOMString[]? IssuerCARef; | 254 DOMString[]? IssuerCARef; |
| 255 // If set, pattern against which X.509 subject settings should be matched. | 255 // If set, pattern against which X.509 subject settings should be matched. |
| 256 IssuerSubjectPattern? Subject; | 256 IssuerSubjectPattern? Subject; |
| 257 }; | 257 }; |
| 258 | 258 |
| 259 dictionary EAPProperties { | 259 dictionary EAPProperties { |
| 260 DOMString? AnonymousIdentity; | 260 DOMString? AnonymousIdentity; |
| 261 CertificatePattern? ClientCertPattern; | 261 CertificatePattern? ClientCertPattern; |
| 262 DOMString? ClientCertPKCS11Id; |
| 262 DOMString? ClientCertRef; | 263 DOMString? ClientCertRef; |
| 263 ClientCertificateType ClientCertType; | 264 ClientCertificateType ClientCertType; |
| 264 DOMString? Identity; | 265 DOMString? Identity; |
| 265 DOMString? Inner; | 266 DOMString? Inner; |
| 266 // The outer EAP type. Required by ONC, but may not be provided when | 267 // The outer EAP type. Required by ONC, but may not be provided when |
| 267 // translating from Shill. | 268 // translating from Shill. |
| 268 DOMString? Outer; | 269 DOMString? Outer; |
| 269 DOMString? Password; | 270 DOMString? Password; |
| 270 boolean? SaveCredentials; | 271 boolean? SaveCredentials; |
| 271 DOMString[]? ServerCAPEMs; | 272 DOMString[]? ServerCAPEMs; |
| (...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1009 // Fired when the list of devices has changed or any device state properties | 1010 // Fired when the list of devices has changed or any device state properties |
| 1010 // have changed. | 1011 // have changed. |
| 1011 static void onDeviceStateListChanged(); | 1012 static void onDeviceStateListChanged(); |
| 1012 | 1013 |
| 1013 // Fired when a portal detection for a network completes. Sends the GUID of | 1014 // Fired when a portal detection for a network completes. Sends the GUID of |
| 1014 // the network and the corresponding captive portal status. | 1015 // the network and the corresponding captive portal status. |
| 1015 static void onPortalDetectionCompleted(DOMString networkGuid, | 1016 static void onPortalDetectionCompleted(DOMString networkGuid, |
| 1016 CaptivePortalStatus status); | 1017 CaptivePortalStatus status); |
| 1017 }; | 1018 }; |
| 1018 }; | 1019 }; |
| OLD | NEW |