Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 224 }, | 224 }, |
| 225 "contextMenusInternal": { | 225 "contextMenusInternal": { |
| 226 "internal": true, | 226 "internal": true, |
| 227 "channel": "stable", | 227 "channel": "stable", |
| 228 "contexts": ["blessed_extension"] | 228 "contexts": ["blessed_extension"] |
| 229 }, | 229 }, |
| 230 "cookies": { | 230 "cookies": { |
| 231 "dependencies": ["permission:cookies"], | 231 "dependencies": ["permission:cookies"], |
| 232 "contexts": ["blessed_extension"] | 232 "contexts": ["blessed_extension"] |
| 233 }, | 233 }, |
| 234 "copresencePrivate": { | |
| 235 "channel": "stable", | |
| 236 "contexts": ["blessed_extension"], | |
| 237 "extension_types": ["extension"], | |
| 238 "location": "component" | |
|
not at google - send to devlin
2014/07/31 15:24:17
I'd prefer if you added a permission for this to f
rkc
2014/07/31 23:12:53
Done.
| |
| 239 }, | |
| 234 "debugger": { | 240 "debugger": { |
| 235 "dependencies": ["permission:debugger"], | 241 "dependencies": ["permission:debugger"], |
| 236 "contexts": ["blessed_extension"] | 242 "contexts": ["blessed_extension"] |
| 237 }, | 243 }, |
| 238 "declarativeContent": { | 244 "declarativeContent": { |
| 239 "dependencies": ["permission:declarativeContent"], | 245 "dependencies": ["permission:declarativeContent"], |
| 240 "contexts": ["blessed_extension"] | 246 "contexts": ["blessed_extension"] |
| 241 }, | 247 }, |
| 242 "declarativeWebRequest": { | 248 "declarativeWebRequest": { |
| 243 "dependencies": ["permission:declarativeWebRequest"], | 249 "dependencies": ["permission:declarativeWebRequest"], |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 766 "internal": true, | 772 "internal": true, |
| 767 "channel": "stable", | 773 "channel": "stable", |
| 768 "dependencies": ["permission:webview"], | 774 "dependencies": ["permission:webview"], |
| 769 "contexts": ["blessed_extension"] | 775 "contexts": ["blessed_extension"] |
| 770 }, | 776 }, |
| 771 "windows": { | 777 "windows": { |
| 772 "dependencies": ["api:tabs"], | 778 "dependencies": ["api:tabs"], |
| 773 "contexts": ["blessed_extension"] | 779 "contexts": ["blessed_extension"] |
| 774 } | 780 } |
| 775 } | 781 } |
| OLD | NEW |