| 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 "contexts": ["blessed_extension"] | 500 "contexts": ["blessed_extension"] |
| 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": { |
| 511 "dependencies": ["permission:gcm"], |
| 512 "contexts": ["blessed_extension"] |
| 513 }, |
| 510 "launcherPage": { | 514 "launcherPage": { |
| 511 "dependencies": ["manifest:launcher_page"], | 515 "dependencies": ["manifest:launcher_page"], |
| 512 "contexts": ["blessed_extension"] | 516 "contexts": ["blessed_extension"] |
| 513 }, | 517 }, |
| 514 "launcherSearchProvider": { | 518 "launcherSearchProvider": { |
| 515 "dependencies": ["permission:launcherSearchProvider"], | 519 "dependencies": ["permission:launcherSearchProvider"], |
| 516 "contexts": ["blessed_extension"] | 520 "contexts": ["blessed_extension"] |
| 517 }, | 521 }, |
| 518 "location": { | 522 "location": { |
| 519 "dependencies": ["permission:location"], | 523 "dependencies": ["permission:location"], |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 "internal": true, | 755 "internal": true, |
| 752 "channel": "stable", | 756 "channel": "stable", |
| 753 "dependencies": ["permission:webview"], | 757 "dependencies": ["permission:webview"], |
| 754 "contexts": ["blessed_extension"] | 758 "contexts": ["blessed_extension"] |
| 755 }, | 759 }, |
| 756 "windows": { | 760 "windows": { |
| 757 "dependencies": ["api:tabs"], | 761 "dependencies": ["api:tabs"], |
| 758 "contexts": ["blessed_extension"] | 762 "contexts": ["blessed_extension"] |
| 759 } | 763 } |
| 760 } | 764 } |
| OLD | NEW |