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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 "matches": [] | 68 "matches": [] |
69 }, | 69 }, |
70 "app.installState": { | 70 "app.installState": { |
71 "contexts": ["blessed_extension", "unblessed_extension", "content_script"], | 71 "contexts": ["blessed_extension", "unblessed_extension", "content_script"], |
72 "matches": [] | 72 "matches": [] |
73 }, | 73 }, |
74 "app.runningState": { | 74 "app.runningState": { |
75 "contexts": ["blessed_extension", "unblessed_extension", "content_script"], | 75 "contexts": ["blessed_extension", "unblessed_extension", "content_script"], |
76 "matches": [] | 76 "matches": [] |
77 }, | 77 }, |
| 78 "appviewTag": { |
| 79 "internal": true, |
| 80 "dependencies": ["permission:appview"], |
| 81 "contexts": ["blessed_extension"] |
| 82 }, |
78 "audioModem": { | 83 "audioModem": { |
79 "dependencies": ["permission:audioModem"], | 84 "dependencies": ["permission:audioModem"], |
80 "contexts": ["blessed_extension"] | 85 "contexts": ["blessed_extension"] |
81 }, | 86 }, |
82 "automationInternal": { | 87 "automationInternal": { |
83 "internal": true, | 88 "internal": true, |
84 "dependencies": ["manifest:automation"], | 89 "dependencies": ["manifest:automation"], |
85 "contexts": ["blessed_extension"] | 90 "contexts": ["blessed_extension"] |
86 }, | 91 }, |
87 "automation": { | 92 "automation": { |
(...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 "internal": true, | 711 "internal": true, |
707 "channel": "stable", | 712 "channel": "stable", |
708 "dependencies": ["permission:webview"], | 713 "dependencies": ["permission:webview"], |
709 "contexts": ["blessed_extension"] | 714 "contexts": ["blessed_extension"] |
710 }, | 715 }, |
711 "windows": { | 716 "windows": { |
712 "dependencies": ["api:tabs"], | 717 "dependencies": ["api:tabs"], |
713 "contexts": ["blessed_extension"] | 718 "contexts": ["blessed_extension"] |
714 } | 719 } |
715 } | 720 } |
OLD | NEW |