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

Side by Side Diff: chrome/app/policy/policy_templates.json

Issue 5005002: Dynamically refresh pref-configured proxies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Eric's feedback. Created 10 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 # policy_templates.json - Metafile for policy templates 2 # policy_templates.json - Metafile for policy templates
3 # 3 #
4 # The content of this file is evaluated as a Python expression. 4 # The content of this file is evaluated as a Python expression.
5 # 5 #
6 # This file is used as input to generate the following policy templates: 6 # This file is used as input to generate the following policy templates:
7 # ADM, ADMX+ADML, MCX/plist and html documentation. 7 # ADM, ADMX+ADML, MCX/plist and html documentation.
8 # 8 #
9 # Policy templates are user interface definitions or documents about the 9 # Policy templates are user interface definitions or documents about the
10 # policies that can be used to configure Chrome. Each policy is a name-value 10 # policies that can be used to configure Chrome. Each policy is a name-value
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 'type': 'enum', 259 'type': 'enum',
260 'items': [ 260 'items': [
261 {'name': 'ProxyServerDisabled', 'value': '0'}, 261 {'name': 'ProxyServerDisabled', 'value': '0'},
262 {'name': 'ProxyServerAutoDetect', 'value': '1'}, 262 {'name': 'ProxyServerAutoDetect', 'value': '1'},
263 {'name': 'ProxyServerManual', 'value': '2'}, 263 {'name': 'ProxyServerManual', 'value': '2'},
264 {'name': 'ProxyServerUseSystem', 'value': '3'}, 264 {'name': 'ProxyServerUseSystem', 'value': '3'},
265 ], 265 ],
266 'annotations': { 266 'annotations': {
267 'platforms': ['linux', 'mac', 'win'], 267 'platforms': ['linux', 'mac', 'win'],
268 'products': ['chrome'], 268 'products': ['chrome'],
269 'features': {'dynamic_refresh': 0}, 269 'features': {'dynamic_refresh': 1},
270 'example_value': 2, 270 'example_value': 2,
271 } 271 }
272 }, 272 },
273 { 273 {
274 'name': 'ProxyServer', 274 'name': 'ProxyServer',
275 'type': 'string', 275 'type': 'string',
276 'annotations': { 276 'annotations': {
277 'platforms': ['linux', 'mac', 'win'], 277 'platforms': ['linux', 'mac', 'win'],
278 'products': ['chrome'], 278 'products': ['chrome'],
279 'features': {'dynamic_refresh': 0}, 279 'features': {'dynamic_refresh': 1},
280 'example_value': '123.123.123.123:8080', 280 'example_value': '123.123.123.123:8080',
281 } 281 }
282 }, 282 },
283 { 283 {
284 'name': 'ProxyPacUrl', 284 'name': 'ProxyPacUrl',
285 'type': 'string', 285 'type': 'string',
286 'annotations': { 286 'annotations': {
287 'platforms': ['linux', 'mac', 'win'], 287 'platforms': ['linux', 'mac', 'win'],
288 'products': ['chrome'], 288 'products': ['chrome'],
289 'features': {'dynamic_refresh': 0}, 289 'features': {'dynamic_refresh': 1},
290 'example_value': 'http://internal.site/example.pac' 290 'example_value': 'http://internal.site/example.pac'
291 } 291 }
292 }, 292 },
293 { 293 {
294 'name': 'ProxyBypassList', 294 'name': 'ProxyBypassList',
295 'type': 'string', 295 'type': 'string',
296 'annotations': { 296 'annotations': {
297 'platforms': ['linux', 'mac', 'win'], 297 'platforms': ['linux', 'mac', 'win'],
298 'products': ['chrome'], 298 'products': ['chrome'],
299 'features': {'dynamic_refresh': 0}, 299 'features': {'dynamic_refresh': 1},
300 'example_value': 300 'example_value':
301 'http://www.example1.com,' 301 'http://www.example1.com,'
302 'http://www.example2.com,http://internalsite/', 302 'http://www.example2.com,http://internalsite/',
303 } 303 }
304 }, 304 },
305 ] 305 ]
306 }, 306 },
307 { 307 {
308 'name': 'HTTPAuthentication', 308 'name': 'HTTPAuthentication',
309 'type': 'group', 309 'type': 'group',
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 { 602 {
603 'key': '$4', 603 'key': '$4',
604 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting- started' 604 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting- started'
605 }, 605 },
606 { 606 {
607 'key': '$5', 607 'key': '$5',
608 'value': 'http://www.chromium.org/administrators/policy-templates' 608 'value': 'http://www.chromium.org/administrators/policy-templates'
609 }, 609 },
610 ] 610 ]
611 } 611 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/net/chrome_url_request_context.h » ('j') | chrome/browser/net/pref_proxy_config_service.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698