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

Unified Diff: chrome/common/extensions/api/networking_config.idl

Issue 880073002: Networking.config: Implementation of the NetworkingConfigService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moved & renamed apitest Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/extensions/api_test/networking_config/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/networking_config.idl
diff --git a/chrome/common/extensions/api/networking_config.idl b/chrome/common/extensions/api/networking_config.idl
deleted file mode 100644
index ea4c4321b76495e927efe4ec5e57d2cc3a2a6bd2..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/networking_config.idl
+++ /dev/null
@@ -1,85 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Use the <code>networking.config</code> API to authenticate to captive
-// portals.
-namespace networking.config {
- // Indicator for the type of network used in $(NetworkInfo).
- enum NetworkType { WiFi };
-
- // A dictionary identifying filtered networks. One of <code>GUID</code>,
- // <code>SSID</code> or <code>HexSSID</code> must be set.
- dictionary NetworkInfo {
- // Currently only WiFi supported, see $(NetworkType).
- NetworkType Type;
-
- // A unique identifier of the network.
- DOMString? GUID;
-
- // A hex-encoded byte sequence.
- DOMString? HexSSID;
-
- // The decoded SSID of the network (default encoding is UTF-8). To filter
- // for non-UTF-8 SSIDs, use HexSSID instead.
- DOMString? SSID;
-
- // Identifier indicating the security type of the network. Valid values are
- // <code>None</code>, <code>WEP-PSK</code>, <code>WPA-PSK</code> and
- // <code>WPA-EAP</code>.
- DOMString? Security;
- };
-
- // Argument to $(finishAuthentication) indicating the result of the
- // captive portal authentication attempt.
- enum AuthenticationResult {
- // The extension does not handle this network or captive portal (e.g. server
- // end-point not found or not compatible).
- unhandled,
-
- // The extension handled this network and authenticated successfully.
- succeeded,
-
- // The extension handled this network, tried to authenticate, however was
- // rejected by the server.
- rejected,
-
- // The extension handled this network, tried to authenticate, however failed
- // due to an unspecified error.
- failed
- };
-
- interface Functions {
- // Allows an extension to define network filters for the networks it can
- // handle. A call to this function will remove all filters previously
- // installed by the extension before setting the new list.
- // |networks|: Network filters to set. Every <code>NetworkInfo</code> must
- // either have the <code>SSID</code> or <code>HexSSID</code>
- // set. Other fields will be ignored.
- void setNetworkFilter(NetworkInfo[] networks);
-
- // Called by the extension to notify the network config API that it finished
- // a captive portal authentication attempt and hand over the result of the
- // attempt. This function must only be called with the GUID of the latest
- // $(onCaptivePortalDetected) event.
- // |GUID|: unique network identifier obtained from
- // $(onCaptivePortalDetected).
- // |result|: the result of the authentication attempt
- void finishAuthentication(DOMString GUID, AuthenticationResult result);
- };
-
- interface Events {
- // This event fires everytime a captive portal is detected on a network
- // matching any of the currently registered network filters and the user
- // consents to use the extension for authentication. Network filters may be
- // set using the $(setNetworkFilter).
- // Upon receiving this event the extension should start its authentication
- // attempt with the captive portal. When the extension finishes its attempt
- // it must call $(finishAuthentication) with the <code>GUID</code> received
- // with this event and the appropriate $(AuthenticationResult) to notify
- // the captive portal API.
- // |networkInfo|: information about the network on which a captive portal
- // was detected.
- static void onCaptivePortalDetected(NetworkInfo networkInfo);
- };
-};
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/extensions/api_test/networking_config/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698