| 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 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 "contexts": ["blessed_extension"] | 644 "contexts": ["blessed_extension"] |
| 645 }, | 645 }, |
| 646 "streamsPrivate": { | 646 "streamsPrivate": { |
| 647 "dependencies": ["permission:streamsPrivate"], | 647 "dependencies": ["permission:streamsPrivate"], |
| 648 "contexts": ["blessed_extension"] | 648 "contexts": ["blessed_extension"] |
| 649 }, | 649 }, |
| 650 "syncFileSystem": { | 650 "syncFileSystem": { |
| 651 "dependencies": ["permission:syncFileSystem"], | 651 "dependencies": ["permission:syncFileSystem"], |
| 652 "contexts": ["blessed_extension"] | 652 "contexts": ["blessed_extension"] |
| 653 }, | 653 }, |
| 654 "syncedNotificationsPrivate": { |
| 655 "contexts": ["blessed_extension"], |
| 656 "dependencies": ["permission:syncedNotificationsPrivate"] |
| 657 }, |
| 654 "systemIndicator": { | 658 "systemIndicator": { |
| 655 "dependencies": ["manifest:system_indicator"], | 659 "dependencies": ["manifest:system_indicator"], |
| 656 "contexts": ["blessed_extension"] | 660 "contexts": ["blessed_extension"] |
| 657 }, | 661 }, |
| 658 "system.cpu": { | 662 "system.cpu": { |
| 659 "dependencies": ["permission:system.cpu"], | 663 "dependencies": ["permission:system.cpu"], |
| 660 "contexts": ["blessed_extension"] | 664 "contexts": ["blessed_extension"] |
| 661 }, | 665 }, |
| 662 "system.display": { | 666 "system.display": { |
| 663 "dependencies": ["permission:system.display"], | 667 "dependencies": ["permission:system.display"], |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 "internal": true, | 773 "internal": true, |
| 770 "channel": "stable", | 774 "channel": "stable", |
| 771 "dependencies": ["permission:webview"], | 775 "dependencies": ["permission:webview"], |
| 772 "contexts": ["blessed_extension"] | 776 "contexts": ["blessed_extension"] |
| 773 }, | 777 }, |
| 774 "windows": { | 778 "windows": { |
| 775 "dependencies": ["api:tabs"], | 779 "dependencies": ["api:tabs"], |
| 776 "contexts": ["blessed_extension"] | 780 "contexts": ["blessed_extension"] |
| 777 } | 781 } |
| 778 } | 782 } |
| OLD | NEW |