| 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 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 "imageWriterPrivate": { | 686 "imageWriterPrivate": { |
| 687 "dependencies": ["permission:imageWriterPrivate"], | 687 "dependencies": ["permission:imageWriterPrivate"], |
| 688 "extension_types": ["platform_app"], | 688 "extension_types": ["platform_app"], |
| 689 "contexts": ["blessed_extension"] | 689 "contexts": ["blessed_extension"] |
| 690 }, | 690 }, |
| 691 "quickUnlockPrivate": { | 691 "quickUnlockPrivate": { |
| 692 "channel": "stable", | 692 "channel": "stable", |
| 693 "contexts": ["webui"], | 693 "contexts": ["webui"], |
| 694 "matches": [ | 694 "matches": [ |
| 695 "chrome://md-settings/*", | 695 "chrome://md-settings/*", |
| 696 "chrome://settings/*" | 696 "chrome://settings/*", |
| 697 "chrome://settings-frame/*" |
| 697 ], | 698 ], |
| 698 "platforms": ["chromeos"] | 699 "platforms": ["chromeos"] |
| 699 }, | 700 }, |
| 700 "resourcesPrivate": [{ | 701 "resourcesPrivate": [{ |
| 701 "dependencies": ["permission:resourcesPrivate"], | 702 "dependencies": ["permission:resourcesPrivate"], |
| 702 "contexts": ["blessed_extension"] | 703 "contexts": ["blessed_extension"] |
| 703 }, { | 704 }, { |
| 704 "channel": "stable", | 705 "channel": "stable", |
| 705 "contexts": ["webui"], | 706 "contexts": ["webui"], |
| 706 "matches": [ | 707 "matches": [ |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 "internal": true, | 840 "internal": true, |
| 840 "channel": "stable", | 841 "channel": "stable", |
| 841 "dependencies": ["permission:webview"], | 842 "dependencies": ["permission:webview"], |
| 842 "contexts": ["blessed_extension"] | 843 "contexts": ["blessed_extension"] |
| 843 }, | 844 }, |
| 844 "windows": { | 845 "windows": { |
| 845 "dependencies": ["api:tabs"], | 846 "dependencies": ["api:tabs"], |
| 846 "contexts": ["blessed_extension"] | 847 "contexts": ["blessed_extension"] |
| 847 } | 848 } |
| 848 } | 849 } |
| OLD | NEW |