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

Side by Side Diff: extensions/common/api/_api_features.json

Issue 1820023002: Implementation of chrome://cast page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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
« no previous file with comments | « chrome/common/url_constants.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // This features file defines extension APIs implemented under src/extensions. 5 // This features file defines extension APIs implemented under src/extensions.
6 // See extensions/common/features/* to understand this file, in particular 6 // See extensions/common/features/* to understand this file, in particular
7 // feature.h, simple_feature.h, and base_feature_provider.h. 7 // feature.h, simple_feature.h, and base_feature_provider.h.
8 // 8 //
9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context
10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc.
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 }, 181 },
182 "extensionViewInternal": [ 182 "extensionViewInternal": [
183 { 183 {
184 "internal": true, 184 "internal": true,
185 "contexts": ["blessed_extension"], 185 "contexts": ["blessed_extension"],
186 "dependencies": ["permission:extensionview"] 186 "dependencies": ["permission:extensionview"]
187 }, { 187 }, {
188 "internal": true, 188 "internal": true,
189 "channel": "stable", 189 "channel": "stable",
190 "contexts": ["webui"], 190 "contexts": ["webui"],
191 "matches": ["chrome://media-router/*"] 191 "matches": [
192 "chrome://cast/*",
193 "chrome://media-router/*"
194 ]
192 } 195 }
193 ], 196 ],
194 "events": { 197 "events": {
195 "internal": true, 198 "internal": true,
196 "channel": "stable", 199 "channel": "stable",
197 "extension_types": ["platform_app", "extension"], 200 "extension_types": ["platform_app", "extension"],
198 "contexts": "all", 201 "contexts": "all",
199 "matches": ["<all_urls>"] 202 "matches": ["<all_urls>"]
200 }, 203 },
201 "guestViewInternal": [ 204 "guestViewInternal": [
202 { 205 {
203 "internal": true, 206 "internal": true,
204 "channel": "stable", 207 "channel": "stable",
205 "contexts": ["blessed_extension"] 208 "contexts": ["blessed_extension"]
206 }, { 209 }, {
207 "internal": true, 210 "internal": true,
208 "channel": "trunk", 211 "channel": "trunk",
209 "contexts": ["webui"], 212 "contexts": ["webui"],
210 "matches": [ 213 "matches": [
214 "chrome://cast/*",
211 "chrome://extensions-frame/*", 215 "chrome://extensions-frame/*",
212 "chrome://extensions/*", 216 "chrome://extensions/*",
213 "chrome://chrome-signin/*", 217 "chrome://chrome-signin/*",
214 "chrome://media-router/*", 218 "chrome://media-router/*",
215 "chrome://oobe/*" 219 "chrome://oobe/*"
216 ] 220 ]
217 } 221 }
218 ], 222 ],
219 "hid": { 223 "hid": {
220 "dependencies": ["permission:hid"], 224 "dependencies": ["permission:hid"],
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 }, { 506 }, {
503 "channel": "stable", 507 "channel": "stable",
504 "contexts": ["webui"], 508 "contexts": ["webui"],
505 "matches": [ 509 "matches": [
506 "chrome://chrome-signin/*", 510 "chrome://chrome-signin/*",
507 "chrome://media-router/*", 511 "chrome://media-router/*",
508 "chrome://oobe/*" 512 "chrome://oobe/*"
509 ] 513 ]
510 }] 514 }]
511 } 515 }
OLDNEW
« no previous file with comments | « chrome/common/url_constants.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698