| 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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 "management.uninstallSelf": { | 508 "management.uninstallSelf": { |
| 509 "dependencies": [], | 509 "dependencies": [], |
| 510 "channel": "stable", | 510 "channel": "stable", |
| 511 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 511 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 512 }, | 512 }, |
| 513 "management.createAppShortcut": { | 513 "management.createAppShortcut": { |
| 514 "dependencies": ["permission:management"], | 514 "dependencies": ["permission:management"], |
| 515 "channel": "dev", | 515 "channel": "dev", |
| 516 "contexts": ["blessed_extension"] | 516 "contexts": ["blessed_extension"] |
| 517 }, | 517 }, |
| 518 "management.generateAppForLink": { |
| 519 "dependencies": ["permission:management"], |
| 520 "channel": "dev", |
| 521 "contexts": ["blessed_extension"] |
| 522 }, |
| 518 // This is not a real API, only here for documentation purposes. | 523 // This is not a real API, only here for documentation purposes. |
| 519 // See http://crbug.com/275944 for background. | 524 // See http://crbug.com/275944 for background. |
| 520 "manifestTypes": { | 525 "manifestTypes": { |
| 521 "internal": true, | 526 "internal": true, |
| 522 "channel": "stable", | 527 "channel": "stable", |
| 523 "contexts": ["blessed_extension"] | 528 "contexts": ["blessed_extension"] |
| 524 }, | 529 }, |
| 525 "mediaGalleries": { | 530 "mediaGalleries": { |
| 526 "dependencies": ["permission:mediaGalleries"], | 531 "dependencies": ["permission:mediaGalleries"], |
| 527 "contexts": ["blessed_extension"] | 532 "contexts": ["blessed_extension"] |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 765 "internal": true, | 770 "internal": true, |
| 766 "channel": "stable", | 771 "channel": "stable", |
| 767 "dependencies": ["permission:webview"], | 772 "dependencies": ["permission:webview"], |
| 768 "contexts": ["blessed_extension"] | 773 "contexts": ["blessed_extension"] |
| 769 }, | 774 }, |
| 770 "windows": { | 775 "windows": { |
| 771 "dependencies": ["api:tabs"], | 776 "dependencies": ["api:tabs"], |
| 772 "contexts": ["blessed_extension"] | 777 "contexts": ["blessed_extension"] |
| 773 } | 778 } |
| 774 } | 779 } |
| OLD | NEW |