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 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
516 "contexts": ["blessed_extension"] | 516 "contexts": ["blessed_extension"] |
517 }, | 517 }, |
518 "input.ime": { | 518 "input.ime": { |
519 "dependencies": ["permission:input"], | 519 "dependencies": ["permission:input"], |
520 "contexts": ["blessed_extension"] | 520 "contexts": ["blessed_extension"] |
521 }, | 521 }, |
522 "inputMethodPrivate": { | 522 "inputMethodPrivate": { |
523 "dependencies": ["permission:inputMethodPrivate"], | 523 "dependencies": ["permission:inputMethodPrivate"], |
524 "contexts": ["blessed_extension"] | 524 "contexts": ["blessed_extension"] |
525 }, | 525 }, |
526 "ledger": { | |
527 "dependencies": ["permission:ledger"], | |
528 "contexts": ["blessed_extension"] | |
529 }, | |
530 "location": { | 526 "location": { |
531 "dependencies": ["permission:location"], | 527 "dependencies": ["permission:location"], |
532 "contexts": ["blessed_extension"] | 528 "contexts": ["blessed_extension"] |
533 }, | 529 }, |
534 "logPrivate": { | 530 "logPrivate": { |
535 "dependencies": ["permission:logPrivate"], | 531 "dependencies": ["permission:logPrivate"], |
536 "contexts": ["blessed_extension"] | 532 "contexts": ["blessed_extension"] |
537 }, | 533 }, |
538 "webcamPrivate": { | 534 "webcamPrivate": { |
539 "dependencies": ["permission:webcamPrivate"], | 535 "dependencies": ["permission:webcamPrivate"], |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
828 "internal": true, | 824 "internal": true, |
829 "channel": "stable", | 825 "channel": "stable", |
830 "dependencies": ["permission:webview"], | 826 "dependencies": ["permission:webview"], |
831 "contexts": ["blessed_extension"] | 827 "contexts": ["blessed_extension"] |
832 }, | 828 }, |
833 "windows": { | 829 "windows": { |
834 "dependencies": ["api:tabs"], | 830 "dependencies": ["api:tabs"], |
835 "contexts": ["blessed_extension"] | 831 "contexts": ["blessed_extension"] |
836 } | 832 } |
837 } | 833 } |
OLD | NEW |