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