| 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"], |
| 11 "contexts": ["blessed_extension"] | 11 "contexts": ["blessed_extension"] |
| 12 }, | 12 }, |
| 13 "adview": { |
| 14 "dependencies": ["permission:adview"], |
| 15 "contexts": ["blessed_extension"] |
| 16 }, |
| 13 "alarms": { | 17 "alarms": { |
| 14 "dependencies": ["permission:alarms"], | 18 "dependencies": ["permission:alarms"], |
| 15 "contexts": ["blessed_extension"] | 19 "contexts": ["blessed_extension"] |
| 16 }, | 20 }, |
| 17 "app": { | 21 "app": { |
| 18 "channel": "stable", | 22 "channel": "stable", |
| 19 "extension_types": ["hosted_app", "extension", "packaged_app"], | 23 "extension_types": ["hosted_app", "extension", "packaged_app"], |
| 20 "contexts": [ | 24 "contexts": [ |
| 21 "blessed_extension", "unblessed_extension", "content_script", "web_page" | 25 "blessed_extension", "unblessed_extension", "content_script", "web_page" |
| 22 ], | 26 ], |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 }, | 548 }, |
| 545 "webview": { | 549 "webview": { |
| 546 "dependencies": ["permission:webview"], | 550 "dependencies": ["permission:webview"], |
| 547 "contexts": ["blessed_extension"] | 551 "contexts": ["blessed_extension"] |
| 548 }, | 552 }, |
| 549 "windows": { | 553 "windows": { |
| 550 "dependencies": ["permission:tabs"], | 554 "dependencies": ["permission:tabs"], |
| 551 "contexts": ["blessed_extension"] | 555 "contexts": ["blessed_extension"] |
| 552 } | 556 } |
| 553 } | 557 } |
| OLD | NEW |