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

Unified Diff: extensions/common/api/vpn_provider.idl

Issue 941343002: Update documentation for vpnProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes nits from Bartosz Created 5 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/api/vpn_provider.idl
diff --git a/extensions/common/api/vpn_provider.idl b/extensions/common/api/vpn_provider.idl
index ab5e31c0a8dab12fb0fdf2f95b21760151709584..c48e0b013d5657dd0b8a793fead95b62e29d1001 100644
--- a/extensions/common/api/vpn_provider.idl
+++ b/extensions/common/api/vpn_provider.idl
@@ -20,12 +20,21 @@ namespace vpnProvider {
// server.
// When many rules match a destination, the rule with the longest matching
// prefix wins.
+ // Entries that correspond to the same CIDR block are treated as duplicates.
+ // Such duplicates in the collated (exclusionList + inclusionList) list are
+ // eliminated and the exact duplicate entry that will be eliminated is
+ // undefined.
DOMString[] exclusionList;
// Include network traffic to the list of IP blocks in CIDR notation to the
- // tunnel. By default all user traffic is routed to the tunnel. This
- // parameter can be used to setup split tunnel.
+ // tunnel. This parameter can be used to set up a split tunnel. By default
+ // no traffic is directed to the tunnel. Adding the entry "0.0.0.0/0" to
+ // this list gets all the user traffic redirected to the tunnel.
// When many rules match a destination, the rule with the longest matching
// prefix wins.
+ // Entries that correspond to the same CIDR block are treated as duplicates.
+ // Such duplicates in the collated (exclusionList + inclusionList) list are
+ // eliminated and the exact duplicate entry that will be eliminated is
+ // undefined.
DOMString[] inclusionList;
// A list of search domains. (default: no search domain)
DOMString[]? domainSearch;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698