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 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 "input.ime": { | 475 "input.ime": { |
476 "platforms": ["chromeos"], | 476 "platforms": ["chromeos"], |
477 "dependencies": ["permission:input"], | 477 "dependencies": ["permission:input"], |
478 "contexts": ["blessed_extension"] | 478 "contexts": ["blessed_extension"] |
479 }, | 479 }, |
480 "inputMethodPrivate": { | 480 "inputMethodPrivate": { |
481 "platforms": ["chromeos"], | 481 "platforms": ["chromeos"], |
482 "dependencies": ["permission:inputMethodPrivate"], | 482 "dependencies": ["permission:inputMethodPrivate"], |
483 "contexts": ["blessed_extension"] | 483 "contexts": ["blessed_extension"] |
484 }, | 484 }, |
| 485 "ledger": { |
| 486 "platforms": ["chromeos"], |
| 487 "dependencies": ["permission:ledger"], |
| 488 "contexts": ["blessed_extension"] |
| 489 }, |
485 "location": { | 490 "location": { |
486 "dependencies": ["permission:location"], | 491 "dependencies": ["permission:location"], |
487 "contexts": ["blessed_extension"] | 492 "contexts": ["blessed_extension"] |
488 }, | 493 }, |
489 "logPrivate": { | 494 "logPrivate": { |
490 "dependencies": ["permission:logPrivate"], | 495 "dependencies": ["permission:logPrivate"], |
491 "extension_types": ["extension", "legacy_packaged_app"], | 496 "extension_types": ["extension", "legacy_packaged_app"], |
492 "contexts": ["blessed_extension"] | 497 "contexts": ["blessed_extension"] |
493 }, | 498 }, |
494 "webcamPrivate": { | 499 "webcamPrivate": { |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
764 "internal": true, | 769 "internal": true, |
765 "channel": "stable", | 770 "channel": "stable", |
766 "dependencies": ["permission:webview"], | 771 "dependencies": ["permission:webview"], |
767 "contexts": ["blessed_extension"] | 772 "contexts": ["blessed_extension"] |
768 }, | 773 }, |
769 "windows": { | 774 "windows": { |
770 "dependencies": ["api:tabs"], | 775 "dependencies": ["api:tabs"], |
771 "contexts": ["blessed_extension"] | 776 "contexts": ["blessed_extension"] |
772 } | 777 } |
773 } | 778 } |
OLD | NEW |