| 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 // See c/c/e/features/* to understand this file, in particular feature.h, | 5 // See c/c/e/features/* to understand this file, in particular feature.h, |
| 6 // simple_feature.h, and base_feature_provider.h. | 6 // simple_feature.h, and base_feature_provider.h. |
| 7 | 7 |
| 8 { | 8 { |
| 9 "activityLogPrivate": { | 9 "activityLogPrivate": { |
| 10 "dependencies": ["permission:activityLogPrivate"], | 10 "dependencies": ["permission:activityLogPrivate"], |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "channel": "stable", | 22 "channel": "stable", |
| 23 "extension_types": ["hosted_app", "extension", "legacy_packaged_app"], | 23 "extension_types": ["hosted_app", "extension", "legacy_packaged_app"], |
| 24 "contexts": [ | 24 "contexts": [ |
| 25 "blessed_extension", "unblessed_extension", "content_script", "web_page" | 25 "blessed_extension", "unblessed_extension", "content_script", "web_page" |
| 26 ], | 26 ], |
| 27 "matches": [ | 27 "matches": [ |
| 28 "http://*/*", "https://*/*", "chrome-extension://*/*", "file://*/*" | 28 "http://*/*", "https://*/*", "chrome-extension://*/*", "file://*/*" |
| 29 ] | 29 ] |
| 30 }, | 30 }, |
| 31 "app.runtime": { | 31 "app.runtime": { |
| 32 "channel": "stable", | 32 "noparent": true, |
| 33 "contexts": ["blessed_extension"], | 33 "contexts": ["blessed_extension"], |
| 34 "extension_types": ["platform_app"], | 34 "dependencies": ["permission:app.runtime"] |
| 35 "noparent": true | |
| 36 }, | 35 }, |
| 37 "app.window": { | 36 "app.window": { |
| 38 "channel": "stable", | 37 "noparent": true, |
| 39 "contexts": ["blessed_extension"], | 38 "contexts": ["blessed_extension"], |
| 40 "extension_types": ["platform_app"], | 39 "dependencies": ["permission:app.window"] |
| 41 "noparent": true | |
| 42 }, | 40 }, |
| 43 "app.currentWindowInternal": { | 41 "app.currentWindowInternal": { |
| 44 "noparent": true, | 42 "noparent": true, |
| 45 "internal": true, | 43 "internal": true, |
| 46 "channel": "stable", | 44 "channel": "stable", |
| 47 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 45 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
| 48 }, | 46 }, |
| 49 "app.currentWindowInternal.setAlwaysOnTop": { | 47 "app.currentWindowInternal.setAlwaysOnTop": { |
| 50 "channel": "dev", | 48 "channel": "dev", |
| 51 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 49 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
| (...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 "internal": true, | 715 "internal": true, |
| 718 "channel": "stable", | 716 "channel": "stable", |
| 719 "dependencies": ["permission:webview"], | 717 "dependencies": ["permission:webview"], |
| 720 "contexts": ["blessed_extension"] | 718 "contexts": ["blessed_extension"] |
| 721 }, | 719 }, |
| 722 "windows": { | 720 "windows": { |
| 723 "dependencies": ["api:tabs"], | 721 "dependencies": ["api:tabs"], |
| 724 "contexts": ["blessed_extension"] | 722 "contexts": ["blessed_extension"] |
| 725 } | 723 } |
| 726 } | 724 } |
| OLD | NEW |