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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 239 "contexts": ["blessed_extension"] | 239 "contexts": ["blessed_extension"] |
| 240 }, | 240 }, |
| 241 "copresencePrivate": { | 241 "copresencePrivate": { |
| 242 "dependencies": ["permission:copresencePrivate"], | 242 "dependencies": ["permission:copresencePrivate"], |
| 243 "contexts": ["blessed_extension"] | 243 "contexts": ["blessed_extension"] |
| 244 }, | 244 }, |
| 245 "cryptotokenPrivate": { | 245 "cryptotokenPrivate": { |
| 246 "dependencies": ["permission:cryptotokenPrivate"], | 246 "dependencies": ["permission:cryptotokenPrivate"], |
| 247 "contexts": ["blessed_extension"] | 247 "contexts": ["blessed_extension"] |
| 248 }, | 248 }, |
| 249 "dashboardPrivate": [{ | |
| 250 "channel": "stable", | |
| 251 "contexts": ["blessed_web_page", "web_page"], | |
| 252 "matches": ["https://chrome.google.com/*"] | |
| 253 }, { | |
| 254 "channel": "stable", | |
| 255 "contexts": ["blessed_extension"], | |
| 256 "whitelist": [ | |
| 257 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5" // Web Store | |
|
not at google - send to devlin
2015/07/31 14:42:20
What does the webstore need from this?
Marc Treib
2015/07/31 15:28:42
The webstore also needs to call this API - remote
| |
| 258 ] | |
| 259 }], | |
| 249 "dataReductionProxy": { | 260 "dataReductionProxy": { |
| 250 "dependencies": ["permission:dataReductionProxy"], | 261 "dependencies": ["permission:dataReductionProxy"], |
| 251 "contexts": ["blessed_extension"] | 262 "contexts": ["blessed_extension"] |
| 252 }, | 263 }, |
| 253 "debugger": { | 264 "debugger": { |
| 254 "dependencies": ["permission:debugger"], | 265 "dependencies": ["permission:debugger"], |
| 255 "contexts": ["blessed_extension"] | 266 "contexts": ["blessed_extension"] |
| 256 }, | 267 }, |
| 257 "declarativeContent": { | 268 "declarativeContent": { |
| 258 "dependencies": ["permission:declarativeContent"], | 269 "dependencies": ["permission:declarativeContent"], |
| (...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 805 "internal": true, | 816 "internal": true, |
| 806 "channel": "stable", | 817 "channel": "stable", |
| 807 "dependencies": ["permission:webview"], | 818 "dependencies": ["permission:webview"], |
| 808 "contexts": ["blessed_extension"] | 819 "contexts": ["blessed_extension"] |
| 809 }, | 820 }, |
| 810 "windows": { | 821 "windows": { |
| 811 "dependencies": ["api:tabs"], | 822 "dependencies": ["api:tabs"], |
| 812 "contexts": ["blessed_extension"] | 823 "contexts": ["blessed_extension"] |
| 813 } | 824 } |
| 814 } | 825 } |
| OLD | NEW |