OLD | NEW |
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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 }, | 286 }, |
287 "networkingPrivate": [{ | 287 "networkingPrivate": [{ |
288 "dependencies": ["permission:networkingPrivate"], | 288 "dependencies": ["permission:networkingPrivate"], |
289 "contexts": ["blessed_extension"] | 289 "contexts": ["blessed_extension"] |
290 }, { | 290 }, { |
291 "channel": "stable", | 291 "channel": "stable", |
292 "contexts": ["webui"], | 292 "contexts": ["webui"], |
293 "matches": [ | 293 "matches": [ |
294 "chrome://md-settings/*", | 294 "chrome://md-settings/*", |
295 "chrome://network/*", | 295 "chrome://network/*", |
| 296 "chrome://oobe/*", |
296 "chrome://settings/*", | 297 "chrome://settings/*", |
297 "chrome://settings-frame/*" | 298 "chrome://settings-frame/*" |
298 ] | 299 ] |
299 }], | 300 }], |
300 "power": { | 301 "power": { |
301 "dependencies": ["permission:power"], | 302 "dependencies": ["permission:power"], |
302 "contexts": ["blessed_extension"] | 303 "contexts": ["blessed_extension"] |
303 }, | 304 }, |
304 "printerProvider": { | 305 "printerProvider": { |
305 "dependencies": ["permission:printerProvider"], | 306 "dependencies": ["permission:printerProvider"], |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 }, { | 507 }, { |
507 "channel": "stable", | 508 "channel": "stable", |
508 "contexts": ["webui"], | 509 "contexts": ["webui"], |
509 "matches": [ | 510 "matches": [ |
510 "chrome://chrome-signin/*", | 511 "chrome://chrome-signin/*", |
511 "chrome://media-router/*", | 512 "chrome://media-router/*", |
512 "chrome://oobe/*" | 513 "chrome://oobe/*" |
513 ] | 514 ] |
514 }] | 515 }] |
515 } | 516 } |
OLD | NEW |