| 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 26 matching lines...) Expand all Loading... |
| 37 "noparent": true, | 37 "noparent": true, |
| 38 "contexts": ["blessed_extension"], | 38 "contexts": ["blessed_extension"], |
| 39 "dependencies": ["permission:app.window"] | 39 "dependencies": ["permission:app.window"] |
| 40 }, | 40 }, |
| 41 "app.currentWindowInternal": { | 41 "app.currentWindowInternal": { |
| 42 "noparent": true, | 42 "noparent": true, |
| 43 "internal": true, | 43 "internal": true, |
| 44 "channel": "stable", | 44 "channel": "stable", |
| 45 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 45 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
| 46 }, | 46 }, |
| 47 "app.currentWindowInternal.setAlwaysOnTop": { | |
| 48 "channel": "dev", | |
| 49 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | |
| 50 }, | |
| 51 "app.getDetails": { | 47 "app.getDetails": { |
| 52 "contexts": ["blessed_extension", "unblessed_extension", "content_script"], | 48 "contexts": ["blessed_extension", "unblessed_extension", "content_script"], |
| 53 "matches": [] | 49 "matches": [] |
| 54 }, | 50 }, |
| 55 "app.getDetailsForFrame": { | 51 "app.getDetailsForFrame": { |
| 56 "contexts": ["blessed_extension", "unblessed_extension", "content_script"], | 52 "contexts": ["blessed_extension", "unblessed_extension", "content_script"], |
| 57 "matches": [] | 53 "matches": [] |
| 58 }, | 54 }, |
| 59 "app.getIsInstalled": { | 55 "app.getIsInstalled": { |
| 60 "contexts": ["blessed_extension", "unblessed_extension", "content_script"], | 56 "contexts": ["blessed_extension", "unblessed_extension", "content_script"], |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 "internal": true, | 711 "internal": true, |
| 716 "channel": "stable", | 712 "channel": "stable", |
| 717 "dependencies": ["permission:webview"], | 713 "dependencies": ["permission:webview"], |
| 718 "contexts": ["blessed_extension"] | 714 "contexts": ["blessed_extension"] |
| 719 }, | 715 }, |
| 720 "windows": { | 716 "windows": { |
| 721 "dependencies": ["api:tabs"], | 717 "dependencies": ["api:tabs"], |
| 722 "contexts": ["blessed_extension"] | 718 "contexts": ["blessed_extension"] |
| 723 } | 719 } |
| 724 } | 720 } |
| OLD | NEW |