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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 "management.createAppShortcut": { | 535 "management.createAppShortcut": { |
536 "dependencies": ["permission:management"], | 536 "dependencies": ["permission:management"], |
537 "channel": "dev", | 537 "channel": "dev", |
538 "contexts": ["blessed_extension"] | 538 "contexts": ["blessed_extension"] |
539 }, | 539 }, |
540 "management.setLaunchType": { | 540 "management.setLaunchType": { |
541 "dependencies": ["permission:management"], | 541 "dependencies": ["permission:management"], |
542 "channel": "dev", | 542 "channel": "dev", |
543 "contexts": ["blessed_extension"] | 543 "contexts": ["blessed_extension"] |
544 }, | 544 }, |
| 545 "management.generateAppForLink": { |
| 546 "dependencies": ["permission:management"], |
| 547 "channel": "dev", |
| 548 "contexts": ["blessed_extension"] |
| 549 }, |
545 // This is not a real API, only here for documentation purposes. | 550 // This is not a real API, only here for documentation purposes. |
546 // See http://crbug.com/275944 for background. | 551 // See http://crbug.com/275944 for background. |
547 "manifestTypes": { | 552 "manifestTypes": { |
548 "internal": true, | 553 "internal": true, |
549 "channel": "stable", | 554 "channel": "stable", |
550 "contexts": ["blessed_extension"] | 555 "contexts": ["blessed_extension"] |
551 }, | 556 }, |
552 "mediaGalleries": { | 557 "mediaGalleries": { |
553 "dependencies": ["permission:mediaGalleries"], | 558 "dependencies": ["permission:mediaGalleries"], |
554 "contexts": ["blessed_extension"] | 559 "contexts": ["blessed_extension"] |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
796 "internal": true, | 801 "internal": true, |
797 "channel": "stable", | 802 "channel": "stable", |
798 "dependencies": ["permission:webview"], | 803 "dependencies": ["permission:webview"], |
799 "contexts": ["blessed_extension"] | 804 "contexts": ["blessed_extension"] |
800 }, | 805 }, |
801 "windows": { | 806 "windows": { |
802 "dependencies": ["api:tabs"], | 807 "dependencies": ["api:tabs"], |
803 "contexts": ["blessed_extension"] | 808 "contexts": ["blessed_extension"] |
804 } | 809 } |
805 } | 810 } |
OLD | NEW |