| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "desktopCapture": [{ | 231 "desktopCapture": [{ |
| 232 "dependencies": ["permission:desktopCapture"], | 232 "dependencies": ["permission:desktopCapture"], |
| 233 "contexts": ["blessed_extension"] | 233 "contexts": ["blessed_extension"] |
| 234 }, { | 234 }, { |
| 235 "dependencies": ["permission:desktopCapturePrivate"], | 235 "dependencies": ["permission:desktopCapturePrivate"], |
| 236 "whitelist": [ | 236 "whitelist": [ |
| 237 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev | 237 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev |
| 238 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta | 238 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta |
| 239 "B11A93E7E5B541F8010245EBDE2C74647D6C14B9", // Canary | 239 "B11A93E7E5B541F8010245EBDE2C74647D6C14B9", // Canary |
| 240 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Google Cast Beta | 240 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Google Cast Beta |
| 241 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264" // Google Cast Stable | 241 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264", // Google Cast Stable |
| 242 "C17CD9E6868D7B9C67926E0EC612EA25C768418F", // http://crbug.com/457908 |
| 243 "EF2AB692559EA97C3BBDEA018A8C45F92457BD4E" // http://crbug.com/457908 |
| 242 ], | 244 ], |
| 243 "contexts": ["blessed_extension"] | 245 "contexts": ["blessed_extension"] |
| 244 }], | 246 }], |
| 245 "developerPrivate": { | 247 "developerPrivate": { |
| 246 "dependencies": ["permission:developerPrivate"], | 248 "dependencies": ["permission:developerPrivate"], |
| 247 "contexts": ["blessed_extension"] | 249 "contexts": ["blessed_extension"] |
| 248 }, | 250 }, |
| 249 // All devtools APIs are implemented by hand, so don't compile them. | 251 // All devtools APIs are implemented by hand, so don't compile them. |
| 250 "devtools.inspectedWindow": { | 252 "devtools.inspectedWindow": { |
| 251 "nocompile": true, | 253 "nocompile": true, |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 "internal": true, | 698 "internal": true, |
| 697 "channel": "stable", | 699 "channel": "stable", |
| 698 "dependencies": ["permission:webview"], | 700 "dependencies": ["permission:webview"], |
| 699 "contexts": ["blessed_extension"] | 701 "contexts": ["blessed_extension"] |
| 700 }, | 702 }, |
| 701 "windows": { | 703 "windows": { |
| 702 "dependencies": ["api:tabs"], | 704 "dependencies": ["api:tabs"], |
| 703 "contexts": ["blessed_extension"] | 705 "contexts": ["blessed_extension"] |
| 704 } | 706 } |
| 705 } | 707 } |
| OLD | NEW |