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

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

Issue 8958023: Added missing names in extension api jsons (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed a typo Created 9 years 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
« no previous file with comments | « no previous file | chrome/common/extensions/api/experimental.bookmarkManager.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [ 1 [
2 { 2 {
3 "namespace": "contentSettings", 3 "namespace": "contentSettings",
4 "types": [ 4 "types": [
5 { 5 {
6 "id": "ResourceIdentifier", 6 "id": "ResourceIdentifier",
7 "type": "object", 7 "type": "object",
8 "properties": { 8 "properties": {
9 "id": { 9 "id": {
10 "type": "string", 10 "type": "string",
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 { 141 {
142 "name": "getResourceIdentifiers", 142 "name": "getResourceIdentifiers",
143 "type": "function", 143 "type": "function",
144 "description": "", 144 "description": "",
145 "parameters": [ 145 "parameters": [
146 { 146 {
147 "name": "callback", 147 "name": "callback",
148 "type": "function", 148 "type": "function",
149 "parameters": [ 149 "parameters": [
150 { 150 {
151 "name": "resourceIdentifiers",
151 "type": "array", 152 "type": "array",
152 "description": "A list of resource identifiers for this cont ent type, or <var>undefined</var> if this content type does not use resource ide ntifiers.", 153 "description": "A list of resource identifiers for this cont ent type, or <var>undefined</var> if this content type does not use resource ide ntifiers.",
153 "optional": true, 154 "optional": true,
154 "items": { 155 "items": {
155 "$ref": "ResourceIdentifier" 156 "$ref": "ResourceIdentifier"
156 } 157 }
157 } 158 }
158 ] 159 ]
159 } 160 }
160 ] 161 ]
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 "$ref": "ContentSetting", 208 "$ref": "ContentSetting",
208 "description": "Whether to allow sites to show desktop notifications. On e of<br><var>allow</var>: Allow sites to show desktop notifications,<br><var>blo ck</var>: Don't allow sites to show desktop notifications,<br><var>ask</var>: As k when a site wants to show desktop notifications. <br>Default is <var>ask</var> .<br>The primary URL is the main-frame URL. The secondary URL is not used.", 209 "description": "Whether to allow sites to show desktop notifications. On e of<br><var>allow</var>: Allow sites to show desktop notifications,<br><var>blo ck</var>: Don't allow sites to show desktop notifications,<br><var>ask</var>: As k when a site wants to show desktop notifications. <br>Default is <var>ask</var> .<br>The primary URL is the main-frame URL. The secondary URL is not used.",
209 "value": [ 210 "value": [
210 "notifications", 211 "notifications",
211 {"type":"string", "enum": ["allow", "block", "ask"]} 212 {"type":"string", "enum": ["allow", "block", "ask"]}
212 ] 213 ]
213 } 214 }
214 } 215 }
215 } 216 }
216 ] 217 ]
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/api/experimental.bookmarkManager.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698