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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 }, | 501 }, |
502 "input.ime": { | 502 "input.ime": { |
503 "dependencies": ["permission:input"], | 503 "dependencies": ["permission:input"], |
504 "contexts": ["blessed_extension"] | 504 "contexts": ["blessed_extension"] |
505 }, | 505 }, |
506 "inputMethodPrivate": { | 506 "inputMethodPrivate": { |
507 "dependencies": ["permission:inputMethodPrivate"], | 507 "dependencies": ["permission:inputMethodPrivate"], |
508 "contexts": ["blessed_extension"] | 508 "contexts": ["blessed_extension"] |
509 }, | 509 }, |
510 "instanceID": { | 510 "instanceID": { |
| 511 "channel": "dev", |
511 "dependencies": ["permission:gcm"], | 512 "dependencies": ["permission:gcm"], |
512 "contexts": ["blessed_extension"] | 513 "contexts": ["blessed_extension"] |
513 }, | 514 }, |
514 "launcherPage": { | 515 "launcherPage": { |
515 "dependencies": ["manifest:launcher_page"], | 516 "dependencies": ["manifest:launcher_page"], |
516 "contexts": ["blessed_extension"] | 517 "contexts": ["blessed_extension"] |
517 }, | 518 }, |
518 "launcherSearchProvider": { | 519 "launcherSearchProvider": { |
519 "dependencies": ["permission:launcherSearchProvider"], | 520 "dependencies": ["permission:launcherSearchProvider"], |
520 "contexts": ["blessed_extension"] | 521 "contexts": ["blessed_extension"] |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
775 "internal": true, | 776 "internal": true, |
776 "channel": "stable", | 777 "channel": "stable", |
777 "dependencies": ["permission:webview"], | 778 "dependencies": ["permission:webview"], |
778 "contexts": ["blessed_extension"] | 779 "contexts": ["blessed_extension"] |
779 }, | 780 }, |
780 "windows": { | 781 "windows": { |
781 "dependencies": ["api:tabs"], | 782 "dependencies": ["api:tabs"], |
782 "contexts": ["blessed_extension"] | 783 "contexts": ["blessed_extension"] |
783 } | 784 } |
784 } | 785 } |
OLD | NEW |