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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 206 "contexts": ["blessed_extension"] | 206 "contexts": ["blessed_extension"] |
| 207 }, | 207 }, |
| 208 "chromeosInfoPrivate": { | 208 "chromeosInfoPrivate": { |
| 209 "dependencies": ["permission:chromeosInfoPrivate"], | 209 "dependencies": ["permission:chromeosInfoPrivate"], |
| 210 "contexts": ["blessed_extension"] | 210 "contexts": ["blessed_extension"] |
| 211 }, | 211 }, |
| 212 "cloudPrintPrivate": { | 212 "cloudPrintPrivate": { |
| 213 "dependencies": ["permission:cloudPrintPrivate"], | 213 "dependencies": ["permission:cloudPrintPrivate"], |
| 214 "contexts": ["blessed_extension"] | 214 "contexts": ["blessed_extension"] |
| 215 }, | 215 }, |
| 216 "commandLinePrivate": { | 216 "commandLinePrivate": [{ |
| 217 "dependencies": ["permission:commandLinePrivate"], | 217 "dependencies": ["permission:commandLinePrivate"], |
| 218 "contexts": ["blessed_extension"] | 218 "contexts": ["blessed_extension"] |
| 219 }, | 219 }, { |
| 220 "channel": "trunk", | |
|
not at google - send to devlin
2014/08/14 15:33:20
Better make it stable.
ericzeng
2014/08/14 18:11:54
Done.
| |
| 221 "contexts": ["webui"], | |
| 222 "matches": ["chrome://extensions-frame/*", "chrome://extensions/*"] | |
| 223 }], | |
| 220 "commands": { | 224 "commands": { |
| 221 "dependencies": ["manifest:commands"], | 225 "dependencies": ["manifest:commands"], |
| 222 "contexts": ["blessed_extension"] | 226 "contexts": ["blessed_extension"] |
| 223 }, | 227 }, |
| 224 "contentSettings": { | 228 "contentSettings": { |
| 225 "dependencies": ["permission:contentSettings"], | 229 "dependencies": ["permission:contentSettings"], |
| 226 "contexts": ["blessed_extension"] | 230 "contexts": ["blessed_extension"] |
| 227 }, | 231 }, |
| 228 "contextMenus": { | 232 "contextMenus": { |
| 229 "dependencies": ["permission:contextMenus"], | 233 "dependencies": ["permission:contextMenus"], |
| (...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 828 "internal": true, | 832 "internal": true, |
| 829 "channel": "stable", | 833 "channel": "stable", |
| 830 "dependencies": ["permission:webview"], | 834 "dependencies": ["permission:webview"], |
| 831 "contexts": ["blessed_extension"] | 835 "contexts": ["blessed_extension"] |
| 832 }, | 836 }, |
| 833 "windows": { | 837 "windows": { |
| 834 "dependencies": ["api:tabs"], | 838 "dependencies": ["api:tabs"], |
| 835 "contexts": ["blessed_extension"] | 839 "contexts": ["blessed_extension"] |
| 836 } | 840 } |
| 837 } | 841 } |
| OLD | NEW |