| 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 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 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 "contexts": ["blessed_extension"] | 663 "contexts": ["blessed_extension"] |
| 664 },{ | 664 },{ |
| 665 "dependencies": ["permission:enterprise.platformKeys"], | 665 "dependencies": ["permission:enterprise.platformKeys"], |
| 666 "internal": true, | 666 "internal": true, |
| 667 "contexts": ["blessed_extension"] | 667 "contexts": ["blessed_extension"] |
| 668 }], | 668 }], |
| 669 "preferencesPrivate": { | 669 "preferencesPrivate": { |
| 670 "dependencies": ["permission:preferencesPrivate"], | 670 "dependencies": ["permission:preferencesPrivate"], |
| 671 "contexts": ["blessed_extension"] | 671 "contexts": ["blessed_extension"] |
| 672 }, | 672 }, |
| 673 "principalsPrivate": { | |
| 674 "dependencies": ["permission:principalsPrivate"], | |
| 675 "contexts": ["blessed_extension"] | |
| 676 }, | |
| 677 "privacy": { | 673 "privacy": { |
| 678 "dependencies": ["permission:privacy"], | 674 "dependencies": ["permission:privacy"], |
| 679 "contexts": ["blessed_extension"] | 675 "contexts": ["blessed_extension"] |
| 680 }, | 676 }, |
| 681 "processes": { | 677 "processes": { |
| 682 "dependencies": ["permission:processes"], | 678 "dependencies": ["permission:processes"], |
| 683 "contexts": ["blessed_extension"] | 679 "contexts": ["blessed_extension"] |
| 684 }, | 680 }, |
| 685 "proxy": { | 681 "proxy": { |
| 686 "dependencies": ["permission:proxy"], | 682 "dependencies": ["permission:proxy"], |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 "internal": true, | 829 "internal": true, |
| 834 "channel": "stable", | 830 "channel": "stable", |
| 835 "dependencies": ["permission:webview"], | 831 "dependencies": ["permission:webview"], |
| 836 "contexts": ["blessed_extension"] | 832 "contexts": ["blessed_extension"] |
| 837 }, | 833 }, |
| 838 "windows": { | 834 "windows": { |
| 839 "dependencies": ["api:tabs"], | 835 "dependencies": ["api:tabs"], |
| 840 "contexts": ["blessed_extension"] | 836 "contexts": ["blessed_extension"] |
| 841 } | 837 } |
| 842 } | 838 } |
| OLD | NEW |