Chromium Code Reviews| 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 chrome/common/extensions/api/_features.md to understand this file, as | 6 // See chrome/common/extensions/api/_features.md to understand this file, as |
| 7 // well as feature.h, simple_feature.h, and base_feature_provider.h. | 7 // well as 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 174 "A4577D8C2AF4CF26F40CBCA83FFA4251D6F6C8F8", // http://crbug.com/497301 | 174 "A4577D8C2AF4CF26F40CBCA83FFA4251D6F6C8F8", // http://crbug.com/497301 |
| 175 "A8208CCC87F8261AFAEB6B85D5E8D47372DDEA6B", // http://crbug.com/497301 | 175 "A8208CCC87F8261AFAEB6B85D5E8D47372DDEA6B", // http://crbug.com/497301 |
| 176 "EFCF5358672FEE04789FD2EC3638A67ADEDB6C8C" // http://crbug.com/514696 | 176 "EFCF5358672FEE04789FD2EC3638A67ADEDB6C8C" // http://crbug.com/514696 |
| 177 ], | 177 ], |
| 178 "contexts": ["blessed_extension"] | 178 "contexts": ["blessed_extension"] |
| 179 }], | 179 }], |
| 180 "browsingData": { | 180 "browsingData": { |
| 181 "dependencies": ["permission:browsingData"], | 181 "dependencies": ["permission:browsingData"], |
| 182 "contexts": ["blessed_extension"] | 182 "contexts": ["blessed_extension"] |
| 183 }, | 183 }, |
| 184 "cast.channel": { | 184 "cast.channel": { |
|
Devlin
2016/11/05 06:31:34
To confirm, we still need all the rest of these?
jdufault
2016/11/08 20:15:59
I'll reach out to the owners and see if we can rem
| |
| 185 "dependencies": ["permission:cast"], | 185 "dependencies": ["permission:cast"], |
| 186 "contexts": ["blessed_extension"] | 186 "contexts": ["blessed_extension"] |
| 187 }, | 187 }, |
| 188 "cast.devicesPrivate": { | |
| 189 "dependencies": ["permission:cast"], | |
| 190 "contexts": ["blessed_extension"], | |
| 191 "platforms": ["chromeos"] | |
| 192 }, | |
| 193 "cast.streaming.rtpStream": { | 188 "cast.streaming.rtpStream": { |
| 194 "dependencies": ["permission:cast.streaming"], | 189 "dependencies": ["permission:cast.streaming"], |
| 195 "contexts": ["blessed_extension"] | 190 "contexts": ["blessed_extension"] |
| 196 }, | 191 }, |
| 197 "cast.streaming.receiverSession": { | 192 "cast.streaming.receiverSession": { |
| 198 "dependencies": ["permission:cast.streaming"], | 193 "dependencies": ["permission:cast.streaming"], |
| 199 "contexts": ["blessed_extension"] | 194 "contexts": ["blessed_extension"] |
| 200 }, | 195 }, |
| 201 "cast.streaming.session": { | 196 "cast.streaming.session": { |
| 202 "dependencies": ["permission:cast.streaming"], | 197 "dependencies": ["permission:cast.streaming"], |
| (...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 824 "internal": true, | 819 "internal": true, |
| 825 "channel": "stable", | 820 "channel": "stable", |
| 826 "dependencies": ["permission:webview"], | 821 "dependencies": ["permission:webview"], |
| 827 "contexts": ["blessed_extension"] | 822 "contexts": ["blessed_extension"] |
| 828 }, | 823 }, |
| 829 "windows": { | 824 "windows": { |
| 830 "dependencies": ["api:tabs"], | 825 "dependencies": ["api:tabs"], |
| 831 "contexts": ["blessed_extension"] | 826 "contexts": ["blessed_extension"] |
| 832 } | 827 } |
| 833 } | 828 } |
| OLD | NEW |