| 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 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 "contexts": ["blessed_extension"] | 510 "contexts": ["blessed_extension"] |
| 511 }, | 511 }, |
| 512 "metricsPrivate": { | 512 "metricsPrivate": { |
| 513 "dependencies": ["permission:metricsPrivate"], | 513 "dependencies": ["permission:metricsPrivate"], |
| 514 "contexts": ["blessed_extension"] | 514 "contexts": ["blessed_extension"] |
| 515 }, | 515 }, |
| 516 "mdns": { | 516 "mdns": { |
| 517 "dependencies": ["permission:mdns"], | 517 "dependencies": ["permission:mdns"], |
| 518 "contexts": ["blessed_extension"] | 518 "contexts": ["blessed_extension"] |
| 519 }, | 519 }, |
| 520 "mimeHandler": { |
| 521 "dependencies": ["permission:streamsPrivate"], |
| 522 "contexts": ["blessed_extension"] |
| 523 }, |
| 520 "mimeHandlerViewGuestInternal": { | 524 "mimeHandlerViewGuestInternal": { |
| 521 "internal": true, | 525 "internal": true, |
| 522 "contexts": "all", | 526 "contexts": "all", |
| 523 "channel": "dev", | 527 "channel": "dev", |
| 524 "matches": ["<all_urls>"] | 528 "matches": ["<all_urls>"] |
| 525 }, | 529 }, |
| 526 "musicManagerPrivate": { | 530 "musicManagerPrivate": { |
| 527 "dependencies": ["permission:musicManagerPrivate"], | 531 "dependencies": ["permission:musicManagerPrivate"], |
| 528 "contexts": ["blessed_extension"] | 532 "contexts": ["blessed_extension"] |
| 529 }, | 533 }, |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 "internal": true, | 705 "internal": true, |
| 702 "channel": "stable", | 706 "channel": "stable", |
| 703 "dependencies": ["permission:webview"], | 707 "dependencies": ["permission:webview"], |
| 704 "contexts": ["blessed_extension"] | 708 "contexts": ["blessed_extension"] |
| 705 }, | 709 }, |
| 706 "windows": { | 710 "windows": { |
| 707 "dependencies": ["api:tabs"], | 711 "dependencies": ["api:tabs"], |
| 708 "contexts": ["blessed_extension"] | 712 "contexts": ["blessed_extension"] |
| 709 } | 713 } |
| 710 } | 714 } |
| OLD | NEW |