| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 "internal": true, | 162 "internal": true, |
| 163 "channel": "trunk", | 163 "channel": "trunk", |
| 164 "contexts": "all", | 164 "contexts": "all", |
| 165 "matches": ["<all_urls>"] | 165 "matches": ["<all_urls>"] |
| 166 } | 166 } |
| 167 ], | 167 ], |
| 168 "hid": { | 168 "hid": { |
| 169 "dependencies": ["permission:hid"], | 169 "dependencies": ["permission:hid"], |
| 170 "contexts": ["blessed_extension"] | 170 "contexts": ["blessed_extension"] |
| 171 }, | 171 }, |
| 172 "hid.getUserSelectedDevices": { |
| 173 "contexts": ["blessed_extension"], |
| 174 "channel": "dev", |
| 175 "dependencies": ["permission:hid"] |
| 176 }, |
| 172 "idle": { | 177 "idle": { |
| 173 "dependencies": ["permission:idle"], | 178 "dependencies": ["permission:idle"], |
| 174 "contexts": ["blessed_extension"] | 179 "contexts": ["blessed_extension"] |
| 175 }, | 180 }, |
| 176 "management": [{ | 181 "management": [{ |
| 177 "dependencies": ["permission:management"], | 182 "dependencies": ["permission:management"], |
| 178 "contexts": ["blessed_extension"], | 183 "contexts": ["blessed_extension"], |
| 179 "default_parent": true | 184 "default_parent": true |
| 180 }, { | 185 }, { |
| 181 "channel": "stable", | 186 "channel": "stable", |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 }, { | 436 }, { |
| 432 "channel": "stable", | 437 "channel": "stable", |
| 433 "contexts": ["webui"], | 438 "contexts": ["webui"], |
| 434 "matches": [ | 439 "matches": [ |
| 435 "chrome://chrome-signin/*", | 440 "chrome://chrome-signin/*", |
| 436 "chrome://media-router/*", | 441 "chrome://media-router/*", |
| 437 "chrome://oobe/*" | 442 "chrome://oobe/*" |
| 438 ] | 443 ] |
| 439 }] | 444 }] |
| 440 } | 445 } |
| OLD | NEW |