| 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 16 matching lines...) Expand all Loading... |
| 27 "contexts": ["blessed_extension"] | 27 "contexts": ["blessed_extension"] |
| 28 }], | 28 }], |
| 29 "accessibilityPrivate": { | 29 "accessibilityPrivate": { |
| 30 "dependencies": ["permission:accessibilityPrivate"], | 30 "dependencies": ["permission:accessibilityPrivate"], |
| 31 "contexts": ["blessed_extension"] | 31 "contexts": ["blessed_extension"] |
| 32 }, | 32 }, |
| 33 "activityLogPrivate": { | 33 "activityLogPrivate": { |
| 34 "dependencies": ["permission:activityLogPrivate"], | 34 "dependencies": ["permission:activityLogPrivate"], |
| 35 "contexts": ["blessed_extension"] | 35 "contexts": ["blessed_extension"] |
| 36 }, | 36 }, |
| 37 "alarms": { | |
| 38 "dependencies": ["permission:alarms"], | |
| 39 "contexts": ["blessed_extension"] | |
| 40 }, | |
| 41 "app": { | 37 "app": { |
| 42 "blacklist": [ | 38 "blacklist": [ |
| 43 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice | 39 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice |
| 44 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal | 40 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal |
| 45 "12E618C3C6E97495AAECF2AC12DEB082353241C6", // QO component extension | 41 "12E618C3C6E97495AAECF2AC12DEB082353241C6", // QO component extension |
| 46 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // Official xkb extension | 42 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // Official xkb extension |
| 47 "F94EE6AB36D6C6588670B2B01EB65212D9C64E33", // Open source xkb extension | 43 "F94EE6AB36D6C6588670B2B01EB65212D9C64E33", // Open source xkb extension |
| 48 "B9EF10DDFEA11EF77873CC5009809E5037FC4C7A" // Google input tools | 44 "B9EF10DDFEA11EF77873CC5009809E5037FC4C7A" // Google input tools |
| 49 ], | 45 ], |
| 50 "channel": "stable", | 46 "channel": "stable", |
| (...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 "internal": true, | 700 "internal": true, |
| 705 "channel": "stable", | 701 "channel": "stable", |
| 706 "dependencies": ["permission:webview"], | 702 "dependencies": ["permission:webview"], |
| 707 "contexts": ["blessed_extension"] | 703 "contexts": ["blessed_extension"] |
| 708 }, | 704 }, |
| 709 "windows": { | 705 "windows": { |
| 710 "dependencies": ["api:tabs"], | 706 "dependencies": ["api:tabs"], |
| 711 "contexts": ["blessed_extension"] | 707 "contexts": ["blessed_extension"] |
| 712 } | 708 } |
| 713 } | 709 } |
| OLD | NEW |