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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 "contexts": ["blessed_extension"] | 114 "contexts": ["blessed_extension"] |
115 }, | 115 }, |
116 "declarativeWebRequest": { | 116 "declarativeWebRequest": { |
117 "dependencies": ["permission:declarativeWebRequest"], | 117 "dependencies": ["permission:declarativeWebRequest"], |
118 "contexts": ["blessed_extension"] | 118 "contexts": ["blessed_extension"] |
119 }, | 119 }, |
120 "developerPrivate": { | 120 "developerPrivate": { |
121 "dependencies": ["permission:developerPrivate"], | 121 "dependencies": ["permission:developerPrivate"], |
122 "contexts": ["blessed_extension"] | 122 "contexts": ["blessed_extension"] |
123 }, | 123 }, |
| 124 "diagnostics": { |
| 125 "dependencies": ["permission:diagnostics"], |
| 126 "extension_types": ["platform_app"], |
| 127 "contexts": ["blessed_extension"] |
| 128 }, |
124 "dial": { | 129 "dial": { |
125 "dependencies": ["permission:dial"], | 130 "dependencies": ["permission:dial"], |
126 "contexts": ["blessed_extension"] | 131 "contexts": ["blessed_extension"] |
127 }, | 132 }, |
128 "downloads": { | 133 "downloads": { |
129 "dependencies": ["permission:downloads"], | 134 "dependencies": ["permission:downloads"], |
130 "contexts": ["blessed_extension"] | 135 "contexts": ["blessed_extension"] |
131 }, | 136 }, |
132 "downloadsInternal": { | 137 "downloadsInternal": { |
133 "internal": true, | 138 "internal": true, |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 }, | 544 }, |
540 "webview": { | 545 "webview": { |
541 "dependencies": ["permission:webview"], | 546 "dependencies": ["permission:webview"], |
542 "contexts": ["blessed_extension"] | 547 "contexts": ["blessed_extension"] |
543 }, | 548 }, |
544 "windows": { | 549 "windows": { |
545 "dependencies": ["permission:tabs"], | 550 "dependencies": ["permission:tabs"], |
546 "contexts": ["blessed_extension"] | 551 "contexts": ["blessed_extension"] |
547 } | 552 } |
548 } | 553 } |
OLD | NEW |