| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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? ClientCertRef; | 262 DOMString? ClientCertRef; |
| 263 ClientCertificateType ClientCertType; | 263 ClientCertificateType ClientCertType; |
| 264 DOMString? Identity; | 264 DOMString? Identity; |
| 265 DOMString? Inner; | 265 DOMString? Inner; |
| 266 DOMString Outer; | 266 // The outer EAP type. Required by ONC, but may not be provided when |
| 267 // translating from Shill. |
| 268 DOMString? Outer; |
| 267 DOMString? Password; | 269 DOMString? Password; |
| 268 boolean? SaveCredentials; | 270 boolean? SaveCredentials; |
| 271 DOMString[]? ServerCAPEMs; |
| 269 DOMString[]? ServerCARefs; | 272 DOMString[]? ServerCARefs; |
| 270 boolean? UseProactiveKeyCaching; | 273 boolean? UseProactiveKeyCaching; |
| 271 boolean? UseSystemCAs; | 274 boolean? UseSystemCAs; |
| 272 }; | 275 }; |
| 273 | 276 |
| 274 dictionary FoundNetworkProperties { | 277 dictionary FoundNetworkProperties { |
| 275 // Network availability. | 278 // Network availability. |
| 276 DOMString Status; | 279 DOMString Status; |
| 277 // Network ID. | 280 // Network ID. |
| 278 DOMString NetworkId; | 281 DOMString NetworkId; |
| (...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1005 // Fired when the list of devices has changed or any device state properties | 1008 // Fired when the list of devices has changed or any device state properties |
| 1006 // have changed. | 1009 // have changed. |
| 1007 static void onDeviceStateListChanged(); | 1010 static void onDeviceStateListChanged(); |
| 1008 | 1011 |
| 1009 // Fired when a portal detection for a network completes. Sends the GUID of | 1012 // Fired when a portal detection for a network completes. Sends the GUID of |
| 1010 // the network and the corresponding captive portal status. | 1013 // the network and the corresponding captive portal status. |
| 1011 static void onPortalDetectionCompleted(DOMString networkGuid, | 1014 static void onPortalDetectionCompleted(DOMString networkGuid, |
| 1012 CaptivePortalStatus status); | 1015 CaptivePortalStatus status); |
| 1013 }; | 1016 }; |
| 1014 }; | 1017 }; |
| OLD | NEW |