| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 DOMString? Type; | 114 DOMString? Type; |
| 115 DOMString? WebProxyAutoDiscoveryUrl; | 115 DOMString? WebProxyAutoDiscoveryUrl; |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 dictionary IPSecProperties { | 118 dictionary IPSecProperties { |
| 119 DOMString AuthenticationType; | 119 DOMString AuthenticationType; |
| 120 }; | 120 }; |
| 121 | 121 |
| 122 dictionary ProxyLocation { | 122 dictionary ProxyLocation { |
| 123 DOMString Host; | 123 DOMString Host; |
| 124 DOMString Port; | 124 long Port; |
| 125 }; | 125 }; |
| 126 | 126 |
| 127 dictionary ManualProxySettings { | 127 dictionary ManualProxySettings { |
| 128 ProxyLocation? HTTPProxy; | 128 ProxyLocation? HTTPProxy; |
| 129 ProxyLocation? SecureHTTPProxy; | 129 ProxyLocation? SecureHTTPProxy; |
| 130 ProxyLocation? FTPProxy; | 130 ProxyLocation? FTPProxy; |
| 131 ProxyLocation? SOCKS; | 131 ProxyLocation? SOCKS; |
| 132 }; | 132 }; |
| 133 | 133 |
| 134 dictionary ProxySettings { | 134 dictionary ProxySettings { |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 // Fired when the list of devices has changed or any device state properties | 476 // Fired when the list of devices has changed or any device state properties |
| 477 // have changed. | 477 // have changed. |
| 478 static void onDeviceStateListChanged(); | 478 static void onDeviceStateListChanged(); |
| 479 | 479 |
| 480 // Fired when a portal detection for a network completes. Sends the guid of | 480 // Fired when a portal detection for a network completes. Sends the guid of |
| 481 // the network and the corresponding captive portal status. | 481 // the network and the corresponding captive portal status. |
| 482 static void onPortalDetectionCompleted(DOMString networkGuid, | 482 static void onPortalDetectionCompleted(DOMString networkGuid, |
| 483 CaptivePortalStatus status); | 483 CaptivePortalStatus status); |
| 484 }; | 484 }; |
| 485 }; | 485 }; |
| OLD | NEW |