| 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 chrome/common/extensions/api/_features.md to understand this file, as | 6 // See chrome/common/extensions/api/_features.md to understand this file, as |
| 7 // well as feature.h, simple_feature.h, and feature_provider.h. | 7 // well as feature.h, simple_feature.h, and 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 ] | 166 ] |
| 167 } | 167 } |
| 168 ], | 168 ], |
| 169 "events": { | 169 "events": { |
| 170 "internal": true, | 170 "internal": true, |
| 171 "channel": "stable", | 171 "channel": "stable", |
| 172 "extension_types": ["platform_app", "extension"], | 172 "extension_types": ["platform_app", "extension"], |
| 173 "contexts": "all", | 173 "contexts": "all", |
| 174 "matches": ["<all_urls>"] | 174 "matches": ["<all_urls>"] |
| 175 }, | 175 }, |
| 176 "fileSystem": { |
| 177 "dependencies": ["permission:fileSystem"], |
| 178 "contexts": ["blessed_extension"] |
| 179 }, |
| 176 "guestViewInternal": [ | 180 "guestViewInternal": [ |
| 177 { | 181 { |
| 178 "internal": true, | 182 "internal": true, |
| 179 "channel": "stable", | 183 "channel": "stable", |
| 180 "contexts": ["blessed_extension"] | 184 "contexts": ["blessed_extension"] |
| 181 }, { | 185 }, { |
| 182 "internal": true, | 186 "internal": true, |
| 183 "channel": "stable", | 187 "channel": "stable", |
| 184 "contexts": ["webui"], | 188 "contexts": ["webui"], |
| 185 "matches": [ | 189 "matches": [ |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 }, { | 542 }, { |
| 539 "channel": "stable", | 543 "channel": "stable", |
| 540 "contexts": ["webui"], | 544 "contexts": ["webui"], |
| 541 "matches": [ | 545 "matches": [ |
| 542 "chrome://chrome-signin/*", | 546 "chrome://chrome-signin/*", |
| 543 "chrome://media-router/*", | 547 "chrome://media-router/*", |
| 544 "chrome://oobe/*" | 548 "chrome://oobe/*" |
| 545 ] | 549 ] |
| 546 }] | 550 }] |
| 547 } | 551 } |
| OLD | NEW |