| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta | 242 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta |
| 243 "B11A93E7E5B541F8010245EBDE2C74647D6C14B9", // Canary | 243 "B11A93E7E5B541F8010245EBDE2C74647D6C14B9", // Canary |
| 244 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Google Cast Beta | 244 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Google Cast Beta |
| 245 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264", // Google Cast Stable | 245 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264", // Google Cast Stable |
| 246 "C17CD9E6868D7B9C67926E0EC612EA25C768418F", // http://crbug.com/457908 | 246 "C17CD9E6868D7B9C67926E0EC612EA25C768418F", // http://crbug.com/457908 |
| 247 "EF2AB692559EA97C3BBDEA018A8C45F92457BD4E" // http://crbug.com/457908 | 247 "EF2AB692559EA97C3BBDEA018A8C45F92457BD4E" // http://crbug.com/457908 |
| 248 ], | 248 ], |
| 249 "contexts": ["blessed_extension"] | 249 "contexts": ["blessed_extension"] |
| 250 }], | 250 }], |
| 251 "developerPrivate": [{ | 251 "developerPrivate": [{ |
| 252 "dependencies": ["permission:developerPrivate"], | 252 "dependencies": ["permission:developerPrivate", "permission:management"], |
| 253 "contexts": ["blessed_extension"] | 253 "contexts": ["blessed_extension"] |
| 254 }, { | 254 }, { |
| 255 "channel": "stable", | 255 "channel": "stable", |
| 256 "contexts": ["webui"], | 256 "contexts": ["webui"], |
| 257 "matches": [ | 257 "matches": [ |
| 258 "chrome://extensions/*", | 258 "chrome://extensions/*", |
| 259 "chrome://extensions-frame/*", | 259 "chrome://extensions-frame/*", |
| 260 "chrome://chrome/extensions/*" | 260 "chrome://chrome/extensions/*" |
| 261 ] | 261 ] |
| 262 }], | 262 }], |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 "internal": true, | 706 "internal": true, |
| 707 "channel": "stable", | 707 "channel": "stable", |
| 708 "dependencies": ["permission:webview"], | 708 "dependencies": ["permission:webview"], |
| 709 "contexts": ["blessed_extension"] | 709 "contexts": ["blessed_extension"] |
| 710 }, | 710 }, |
| 711 "windows": { | 711 "windows": { |
| 712 "dependencies": ["api:tabs"], | 712 "dependencies": ["api:tabs"], |
| 713 "contexts": ["blessed_extension"] | 713 "contexts": ["blessed_extension"] |
| 714 } | 714 } |
| 715 } | 715 } |
| OLD | NEW |