| 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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 "contexts": ["blessed_extension"] | 585 "contexts": ["blessed_extension"] |
| 586 }, | 586 }, |
| 587 "readingListPrivate": { | 587 "readingListPrivate": { |
| 588 "dependencies": ["permission:readingListPrivate"], | 588 "dependencies": ["permission:readingListPrivate"], |
| 589 "contexts": ["blessed_extension"] | 589 "contexts": ["blessed_extension"] |
| 590 }, | 590 }, |
| 591 "rtcPrivate": { | 591 "rtcPrivate": { |
| 592 "dependencies": ["permission:rtcPrivate"], | 592 "dependencies": ["permission:rtcPrivate"], |
| 593 "contexts": ["blessed_extension"] | 593 "contexts": ["blessed_extension"] |
| 594 }, | 594 }, |
| 595 "scriptBadge": { | |
| 596 "dependencies": ["manifest:script_badge"], | |
| 597 "contexts": ["blessed_extension"] | |
| 598 }, | |
| 599 "sessions": { | 595 "sessions": { |
| 600 "dependencies": ["permission:sessions"], | 596 "dependencies": ["permission:sessions"], |
| 601 "contexts": ["blessed_extension"] | 597 "contexts": ["blessed_extension"] |
| 602 }, | 598 }, |
| 603 "signedInDevices": { | 599 "signedInDevices": { |
| 604 "dependencies": ["permission:signedInDevices"], | 600 "dependencies": ["permission:signedInDevices"], |
| 605 "contexts": ["blessed_extension"] | 601 "contexts": ["blessed_extension"] |
| 606 }, | 602 }, |
| 607 "streamsPrivate": { | 603 "streamsPrivate": { |
| 608 "dependencies": ["permission:streamsPrivate"], | 604 "dependencies": ["permission:streamsPrivate"], |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 "internal": true, | 704 "internal": true, |
| 709 "channel": "stable", | 705 "channel": "stable", |
| 710 "dependencies": ["permission:webview"], | 706 "dependencies": ["permission:webview"], |
| 711 "contexts": ["blessed_extension"] | 707 "contexts": ["blessed_extension"] |
| 712 }, | 708 }, |
| 713 "windows": { | 709 "windows": { |
| 714 "dependencies": ["api:tabs"], | 710 "dependencies": ["api:tabs"], |
| 715 "contexts": ["blessed_extension"] | 711 "contexts": ["blessed_extension"] |
| 716 } | 712 } |
| 717 } | 713 } |
| OLD | NEW |