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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 486 "ledger": { | 486 "ledger": { |
| 487 "dependencies": ["permission:ledger"], | 487 "dependencies": ["permission:ledger"], |
| 488 "contexts": ["blessed_extension"] | 488 "contexts": ["blessed_extension"] |
| 489 }, | 489 }, |
| 490 "location": { | 490 "location": { |
| 491 "dependencies": ["permission:location"], | 491 "dependencies": ["permission:location"], |
| 492 "contexts": ["blessed_extension"] | 492 "contexts": ["blessed_extension"] |
| 493 }, | 493 }, |
| 494 "logPrivate": { | 494 "logPrivate": { |
| 495 "dependencies": ["permission:logPrivate"], | 495 "dependencies": ["permission:logPrivate"], |
| 496 "extension_types": ["extension", "legacy_packaged_app"], | 496 "extension_types": ["extension", "platform_app"], |
|
not at google - send to devlin
2014/07/18 22:45:09
you don't even need this line, it's implied by the
| |
| 497 "contexts": ["blessed_extension"] | 497 "contexts": ["blessed_extension"] |
| 498 }, | 498 }, |
| 499 "webcamPrivate": { | 499 "webcamPrivate": { |
| 500 "dependencies": ["permission:webcamPrivate"], | 500 "dependencies": ["permission:webcamPrivate"], |
| 501 "contexts": ["blessed_extension"] | 501 "contexts": ["blessed_extension"] |
| 502 }, | 502 }, |
| 503 "management": { | 503 "management": { |
| 504 "dependencies": ["permission:management"], | 504 "dependencies": ["permission:management"], |
| 505 "contexts": ["blessed_extension"] | 505 "contexts": ["blessed_extension"] |
| 506 }, | 506 }, |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 767 "internal": true, | 767 "internal": true, |
| 768 "channel": "stable", | 768 "channel": "stable", |
| 769 "dependencies": ["permission:webview"], | 769 "dependencies": ["permission:webview"], |
| 770 "contexts": ["blessed_extension"] | 770 "contexts": ["blessed_extension"] |
| 771 }, | 771 }, |
| 772 "windows": { | 772 "windows": { |
| 773 "dependencies": ["api:tabs"], | 773 "dependencies": ["api:tabs"], |
| 774 "contexts": ["blessed_extension"] | 774 "contexts": ["blessed_extension"] |
| 775 } | 775 } |
| 776 } | 776 } |
| OLD | NEW |