Chromium Code Reviews| 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 488 "contexts": ["blessed_extension"] | 488 "contexts": ["blessed_extension"] |
| 489 }, | 489 }, |
| 490 "input.ime": { | 490 "input.ime": { |
| 491 "dependencies": ["permission:input"], | 491 "dependencies": ["permission:input"], |
| 492 "contexts": ["blessed_extension"] | 492 "contexts": ["blessed_extension"] |
| 493 }, | 493 }, |
| 494 "inputMethodPrivate": { | 494 "inputMethodPrivate": { |
| 495 "dependencies": ["permission:inputMethodPrivate"], | 495 "dependencies": ["permission:inputMethodPrivate"], |
| 496 "contexts": ["blessed_extension"] | 496 "contexts": ["blessed_extension"] |
| 497 }, | 497 }, |
| 498 "instanceID": { | |
| 499 "dependencies": ["permission:gcm"], | |
|
fgorski
2015/04/22 17:34:59
Is this choice conscious?
When we start using Inst
jianli
2015/04/22 20:18:20
For now I think it would be better to put it under
not at google - send to devlin
2015/04/22 20:47:42
If you add other APIs that depend on instanceID yo
| |
| 500 "contexts": ["blessed_extension"] | |
| 501 }, | |
| 498 "launcherPage": { | 502 "launcherPage": { |
| 499 "dependencies": ["manifest:launcher_page"], | 503 "dependencies": ["manifest:launcher_page"], |
| 500 "contexts": ["blessed_extension"] | 504 "contexts": ["blessed_extension"] |
| 501 }, | 505 }, |
| 502 "launcherSearchProvider": { | 506 "launcherSearchProvider": { |
| 503 "dependencies": ["permission:launcherSearchProvider"], | 507 "dependencies": ["permission:launcherSearchProvider"], |
| 504 "contexts": ["blessed_extension"] | 508 "contexts": ["blessed_extension"] |
| 505 }, | 509 }, |
| 506 "location": { | 510 "location": { |
| 507 "dependencies": ["permission:location"], | 511 "dependencies": ["permission:location"], |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 727 "internal": true, | 731 "internal": true, |
| 728 "channel": "stable", | 732 "channel": "stable", |
| 729 "dependencies": ["permission:webview"], | 733 "dependencies": ["permission:webview"], |
| 730 "contexts": ["blessed_extension"] | 734 "contexts": ["blessed_extension"] |
| 731 }, | 735 }, |
| 732 "windows": { | 736 "windows": { |
| 733 "dependencies": ["api:tabs"], | 737 "dependencies": ["api:tabs"], |
| 734 "contexts": ["blessed_extension"] | 738 "contexts": ["blessed_extension"] |
| 735 } | 739 } |
| 736 } | 740 } |
| OLD | NEW |