| 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 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 "contexts": ["blessed_extension"] | 663 "contexts": ["blessed_extension"] |
| 664 }, | 664 }, |
| 665 "ttsEngine": { | 665 "ttsEngine": { |
| 666 "dependencies": ["permission:ttsEngine"], | 666 "dependencies": ["permission:ttsEngine"], |
| 667 "contexts": ["blessed_extension"] | 667 "contexts": ["blessed_extension"] |
| 668 }, | 668 }, |
| 669 "virtualKeyboardPrivate": { | 669 "virtualKeyboardPrivate": { |
| 670 "dependencies": ["permission:virtualKeyboardPrivate"], | 670 "dependencies": ["permission:virtualKeyboardPrivate"], |
| 671 "contexts": ["blessed_extension"] | 671 "contexts": ["blessed_extension"] |
| 672 }, | 672 }, |
| 673 "vpnProvider": { |
| 674 "dependencies": ["permission:vpnProvider"], |
| 675 "contexts": ["blessed_extension"] |
| 676 }, |
| 673 "wallpaper": { | 677 "wallpaper": { |
| 674 "dependencies": ["permission:wallpaper"], | 678 "dependencies": ["permission:wallpaper"], |
| 675 "contexts": ["blessed_extension"] | 679 "contexts": ["blessed_extension"] |
| 676 }, | 680 }, |
| 677 "wallpaperPrivate": { | 681 "wallpaperPrivate": { |
| 678 "dependencies": ["permission:wallpaperPrivate"], | 682 "dependencies": ["permission:wallpaperPrivate"], |
| 679 "contexts": ["blessed_extension"] | 683 "contexts": ["blessed_extension"] |
| 680 }, | 684 }, |
| 681 "webNavigation": { | 685 "webNavigation": { |
| 682 "dependencies": ["permission:webNavigation"], | 686 "dependencies": ["permission:webNavigation"], |
| (...skipping 30 matching lines...) Expand all Loading... |
| 713 "internal": true, | 717 "internal": true, |
| 714 "channel": "stable", | 718 "channel": "stable", |
| 715 "dependencies": ["permission:webview"], | 719 "dependencies": ["permission:webview"], |
| 716 "contexts": ["blessed_extension"] | 720 "contexts": ["blessed_extension"] |
| 717 }, | 721 }, |
| 718 "windows": { | 722 "windows": { |
| 719 "dependencies": ["api:tabs"], | 723 "dependencies": ["api:tabs"], |
| 720 "contexts": ["blessed_extension"] | 724 "contexts": ["blessed_extension"] |
| 721 } | 725 } |
| 722 } | 726 } |
| OLD | NEW |