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

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

Issue 1848103005: [Extensions] Remove the "use_movable_types" entry from idl/json files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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": { "generate_type_functions": true },
10 "generate_type_functions": true,
11 "use_movable_types": true
12 },
13 "types": [ 10 "types": [
14 { 11 {
15 "id": "ResourceIdentifier", 12 "id": "ResourceIdentifier",
16 "type": "object", 13 "type": "object",
17 "properties": { 14 "properties": {
18 "id": { 15 "id": {
19 "type": "string", 16 "type": "string",
20 "description": "The resource identifier for the given content type." 17 "description": "The resource identifier for the given content type."
21 }, 18 },
22 "description": { 19 "description": {
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 "$ref": "ContentSetting", 340 "$ref": "ContentSetting",
344 "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.", 341 "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.",
345 "value": [ 342 "value": [
346 "automatic-downloads", 343 "automatic-downloads",
347 {"$ref":"MultipleAutomaticDownloadsContentSetting"} 344 {"$ref":"MultipleAutomaticDownloadsContentSetting"}
348 ] 345 ]
349 } 346 }
350 } 347 }
351 } 348 }
352 ] 349 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698