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

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

Issue 1252073002: Move pref names and default value into WebsiteSettingsInfo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@website-settings-registry-simple
Patch Set: Created 5 years, 4 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": "contentSettings", 7 "namespace": "contentSettings",
8 "description": "Use the <code>chrome.contentSettings</code> API to change se ttings that control whether websites can use features such as cookies, JavaScrip t, and plugins. More generally speaking, content settings allow you to customize Chrome's behavior on a per-site basis instead of globally.", 8 "description": "Use the <code>chrome.contentSettings</code> API to change se ttings that control whether websites can use features such as cookies, JavaScrip t, and plugins. More generally speaking, content settings allow you to customize Chrome's behavior on a per-site basis instead of globally.",
9 "compiler_options": { 9 "compiler_options": {
10 "generate_type_functions": true 10 "generate_type_functions": true
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 "description": "Whether to allow sites to run plugins unsandboxed. One o f <br><var>allow</var>: Allow sites to run plugins unsandboxed,<br><var>block</v ar>: Don't allow sites to run plugins unsandboxed,<br><var>ask</var>: Ask when a site wants to run a plugin unsandboxed. <br>Default is <var>ask</var>.<br>The p rimary URL is the URL of the top-level frame. The secondary URL is not used.", 309 "description": "Whether to allow sites to run plugins unsandboxed. One o f <br><var>allow</var>: Allow sites to run plugins unsandboxed,<br><var>block</v ar>: Don't allow sites to run plugins unsandboxed,<br><var>ask</var>: Ask when a site wants to run a plugin unsandboxed. <br>Default is <var>ask</var>.<br>The p rimary URL is the URL of the top-level frame. The secondary URL is not used.",
310 "value": [ 310 "value": [
311 "ppapi-broker", 311 "ppapi-broker",
312 {"$ref":"PpapiBrokerContentSetting"} 312 {"$ref":"PpapiBrokerContentSetting"}
313 ] 313 ]
314 }, 314 },
315 "automaticDownloads": { 315 "automaticDownloads": {
316 "$ref": "ContentSetting", 316 "$ref": "ContentSetting",
317 "description": "Whether to allow sites to download multiple files automa tically. One of <br><var>allow</var>: Allow sites to download multiple files aut omatically,<br><var>block</var>: Don't allow sites to download multiple files au tomatically,<br><var>ask</var>: Ask when a site wants to download files automati cally after the first file. <br>Default is <var>ask</var>.<br>The primary URL is the URL of the top-level frame. The secondary URL is not used.", 317 "description": "Whether to allow sites to download multiple files automa tically. One of <br><var>allow</var>: Allow sites to download multiple files aut omatically,<br><var>block</var>: Don't allow sites to download multiple files au tomatically,<br><var>ask</var>: Ask when a site wants to download files automati cally after the first file. <br>Default is <var>ask</var>.<br>The primary URL is the URL of the top-level frame. The secondary URL is not used.",
318 "value": [ 318 "value": [
319 "multiple-automatic-downloads", 319 "automatic-downloads",
320 {"$ref":"MultipleAutomaticDownloadsContentSetting"} 320 {"$ref":"MultipleAutomaticDownloadsContentSetting"}
321 ] 321 ]
322 } 322 }
323 } 323 }
324 } 324 }
325 ] 325 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698