| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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/chrome. | 5 // This features file defines extension APIs implemented under src/chrome. |
| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 }, | 262 }, |
| 263 "contextMenusInternal": { | 263 "contextMenusInternal": { |
| 264 "internal": true, | 264 "internal": true, |
| 265 "channel": "stable", | 265 "channel": "stable", |
| 266 "contexts": ["blessed_extension"] | 266 "contexts": ["blessed_extension"] |
| 267 }, | 267 }, |
| 268 "cookies": { | 268 "cookies": { |
| 269 "dependencies": ["permission:cookies"], | 269 "dependencies": ["permission:cookies"], |
| 270 "contexts": ["blessed_extension"] | 270 "contexts": ["blessed_extension"] |
| 271 }, | 271 }, |
| 272 "copresence": { | |
| 273 "dependencies": ["permission:copresence"], | |
| 274 "contexts": ["blessed_extension"] | |
| 275 }, | |
| 276 "copresencePrivate": { | 272 "copresencePrivate": { |
| 277 "dependencies": ["permission:copresencePrivate"], | 273 "dependencies": ["permission:copresencePrivate"], |
| 278 "contexts": ["blessed_extension"] | 274 "contexts": ["blessed_extension"] |
| 279 }, | 275 }, |
| 280 "cryptotokenPrivate": { | 276 "cryptotokenPrivate": { |
| 281 "dependencies": ["permission:cryptotokenPrivate"], | 277 "dependencies": ["permission:cryptotokenPrivate"], |
| 282 "contexts": ["blessed_extension"] | 278 "contexts": ["blessed_extension"] |
| 283 }, | 279 }, |
| 284 "dashboardPrivate": [{ | 280 "dashboardPrivate": [{ |
| 285 "channel": "stable", | 281 "channel": "stable", |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 849 "internal": true, | 845 "internal": true, |
| 850 "channel": "stable", | 846 "channel": "stable", |
| 851 "dependencies": ["permission:webview"], | 847 "dependencies": ["permission:webview"], |
| 852 "contexts": ["blessed_extension"] | 848 "contexts": ["blessed_extension"] |
| 853 }, | 849 }, |
| 854 "windows": { | 850 "windows": { |
| 855 "dependencies": ["api:tabs"], | 851 "dependencies": ["api:tabs"], |
| 856 "contexts": ["blessed_extension"] | 852 "contexts": ["blessed_extension"] |
| 857 } | 853 } |
| 858 } | 854 } |
| OLD | NEW |