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

Side by Side Diff: chrome/common/extensions/api/privacy.json

Issue 940893003: Add `privacy.network.webRTCMultipleRoutesEnabled` to extensions API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@webrtc-flag-landed
Patch Set: Changed Array to Set. 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 [ 5 [
6 { 6 {
7 "namespace": "privacy", 7 "namespace": "privacy",
8 "description": "Use the <code>chrome.privacy</code> API to control usage of the features in Chrome that can affect a user's privacy. This API relies on the <a href='types#ChromeSetting'>ChromeSetting prototype of the type API</a> for ge tting and setting Chrome's configuration.", 8 "description": "Use the <code>chrome.privacy</code> API to control usage of the features in Chrome that can affect a user's privacy. This API relies on the <a href='types#ChromeSetting'>ChromeSetting prototype of the type API</a> for ge tting and setting Chrome's configuration.",
9 "properties": { 9 "properties": {
10 "network": { 10 "network": {
11 "type": "object", 11 "type": "object",
12 "value": {}, 12 "value": {},
13 "description": "Settings that influence Chrome's handling of network con nections in general.", 13 "description": "Settings that influence Chrome's handling of network con nections in general.",
14 "properties": { 14 "properties": {
15 "networkPredictionEnabled": { 15 "networkPredictionEnabled": {
16 "$ref": "types.ChromeSetting", 16 "$ref": "types.ChromeSetting",
17 "value": ["networkPredictionEnabled", {"type":"boolean"}], 17 "value": ["networkPredictionEnabled", {"type":"boolean"}],
18 "description": "If enabled, Chrome attempts to speed up your web bro wsing experience by pre-resolving DNS entries, prerendering sites (<code>&lt;lin k rel='prefetch' ...&gt;</code>), and preemptively opening TCP and SSL connectio ns to servers. This preference's value is a boolean, defaulting to <code>true</ code>." 18 "description": "If enabled, Chrome attempts to speed up your web bro wsing experience by pre-resolving DNS entries, prerendering sites (<code>&lt;lin k rel='prefetch' ...&gt;</code>), and preemptively opening TCP and SSL connectio ns to servers. This preference's value is a boolean, defaulting to <code>true</ code>."
19 },
20 "webRTCMultipleRoutesEnabled": {
21 "$ref": "types.ChromeSetting",
22 "value": ["webRTCMultipleRoutesEnabled", {"type":"boolean"}],
23 "description": "If enabled, Chrome will explore all possible routing options when using WebRTC to find the most performant path, possibly exposing u ser's private IP address. Otherwise, WebRTC traffic will be routed the same way as regular HTTP. This preference's value is a boolean, defaulting to <code>true< /code>."
19 } 24 }
20 } 25 }
21 }, 26 },
22 "services": { 27 "services": {
23 "type": "object", 28 "type": "object",
24 "value": {}, 29 "value": {},
25 "description": "Settings that enable or disable features that require th ird-party network services provided by Google and your default search provider." , 30 "description": "Settings that enable or disable features that require th ird-party network services provided by Google and your default search provider." ,
26 "properties": { 31 "properties": {
27 "alternateErrorPagesEnabled": { 32 "alternateErrorPagesEnabled": {
28 "$ref": "types.ChromeSetting", 33 "$ref": "types.ChromeSetting",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 "$ref": "types.ChromeSetting", 100 "$ref": "types.ChromeSetting",
96 "value": ["protectedContentEnabled", {"type":"boolean"}], 101 "value": ["protectedContentEnabled", {"type":"boolean"}],
97 "description": "<strong>Available on Windows and ChromeOS only</stro ng>: If enabled, Chrome provides a unique ID to plugins in order to run protecte d content. The value of this preference is of type boolean, and the default valu e is <code>true</code>.", 102 "description": "<strong>Available on Windows and ChromeOS only</stro ng>: If enabled, Chrome provides a unique ID to plugins in order to run protecte d content. The value of this preference is of type boolean, and the default valu e is <code>true</code>.",
98 "platforms": ["windows", "cros", "cros touch"] 103 "platforms": ["windows", "cros", "cros touch"]
99 } 104 }
100 } 105 }
101 } 106 }
102 } 107 }
103 } 108 }
104 ] 109 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698