Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: extensions/common/api/networking_private.idl

Issue 2188163003: MD Settings: Internet: Add 'forget' button, more fixes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_609156_internet_cleanup_6a
Patch Set: Rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/resources/settings/internet_page/network_summary_item.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 };
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/internet_page/network_summary_item.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698