| 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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 }, | 546 }, |
| 547 "webRequest": { | 547 "webRequest": { |
| 548 "dependencies": ["permission:webRequest"], | 548 "dependencies": ["permission:webRequest"], |
| 549 "contexts": ["blessed_extension"] | 549 "contexts": ["blessed_extension"] |
| 550 }, | 550 }, |
| 551 "webRequestInternal": { | 551 "webRequestInternal": { |
| 552 "internal": true, | 552 "internal": true, |
| 553 "channel": "stable", | 553 "channel": "stable", |
| 554 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 554 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
| 555 }, | 555 }, |
| 556 "webSocketProxyPrivate": { | |
| 557 "dependencies": ["permission:webSocketProxyPrivate"], | |
| 558 "contexts": ["blessed_extension"] | |
| 559 }, | |
| 560 "webstore": { | 556 "webstore": { |
| 561 // Hosted apps can use the webstore API from within a blessed context. | 557 // Hosted apps can use the webstore API from within a blessed context. |
| 562 "channel": "stable", | 558 "channel": "stable", |
| 563 "extension_types": ["hosted_app"], | 559 "extension_types": ["hosted_app"], |
| 564 "contexts": ["blessed_extension", "web_page"], | 560 "contexts": ["blessed_extension", "web_page"], |
| 565 // Any webpage can use the webstore API. | 561 // Any webpage can use the webstore API. |
| 566 "matches": ["http://*/*", "https://*/*"] | 562 "matches": ["http://*/*", "https://*/*"] |
| 567 }, | 563 }, |
| 568 "webstorePrivate": { | 564 "webstorePrivate": { |
| 569 "dependencies": ["permission:webstorePrivate"], | 565 "dependencies": ["permission:webstorePrivate"], |
| 570 "contexts": ["blessed_extension"] | 566 "contexts": ["blessed_extension"] |
| 571 }, | 567 }, |
| 572 "webview": { | 568 "webview": { |
| 573 "dependencies": ["permission:webview"], | 569 "dependencies": ["permission:webview"], |
| 574 "contexts": ["blessed_extension"] | 570 "contexts": ["blessed_extension"] |
| 575 }, | 571 }, |
| 576 "windows": { | 572 "windows": { |
| 577 "dependencies": ["permission:tabs"], | 573 "dependencies": ["permission:tabs"], |
| 578 "contexts": ["blessed_extension"] | 574 "contexts": ["blessed_extension"] |
| 579 } | 575 } |
| 580 } | 576 } |
| OLD | NEW |