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

Side by Side Diff: ash/public/interfaces/vpn_list.mojom

Issue 2513673004: Reland: chromeos: Convert ash VPNDelegate interface to mojo (Closed)
Patch Set: fix manifest for reland Created 4 years, 1 month 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
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module ash.mojom;
6
7 // Describes a third-party VPN provided by an extension (e.g. Cisco AnyConnect).
8 struct ThirdPartyVpnProvider {
9 string name;
10 string extension_id;
11 };
12
13 // Manages the VPN provider list in ash. Allows extension-backed VPN providers
14 // to be added. Ash handles the built-in OpenVPN / L2TP provider internally.
15 interface VpnList {
16 // Sets the list of third-party VPN providers. The |providers| array may be
17 // empty to clear the list (e.g. after the last third-party VPN extension is
18 // uninstalled).
19 SetThirdPartyVpnProviders(array<ThirdPartyVpnProvider> providers);
20 };
OLDNEW
« no previous file with comments | « ash/public/interfaces/system_tray.mojom ('k') | chrome/browser/chrome_content_browser_manifest_overlay.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698