| 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 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 "matches": ["<all_urls>"] | 526 "matches": ["<all_urls>"] |
| 527 }, | 527 }, |
| 528 "musicManagerPrivate": { | 528 "musicManagerPrivate": { |
| 529 "dependencies": ["permission:musicManagerPrivate"], | 529 "dependencies": ["permission:musicManagerPrivate"], |
| 530 "contexts": ["blessed_extension"] | 530 "contexts": ["blessed_extension"] |
| 531 }, | 531 }, |
| 532 "networkingPrivate": { | 532 "networkingPrivate": { |
| 533 "dependencies": ["permission:networkingPrivate"], | 533 "dependencies": ["permission:networkingPrivate"], |
| 534 "contexts": ["blessed_extension"] | 534 "contexts": ["blessed_extension"] |
| 535 }, | 535 }, |
| 536 "networking.config": { |
| 537 "dependencies": ["permission:networking.config"], |
| 538 "contexts": ["blessed_extension"] |
| 539 }, |
| 536 "notificationProvider": { | 540 "notificationProvider": { |
| 537 "dependencies": ["permission:notificationProvider"], | 541 "dependencies": ["permission:notificationProvider"], |
| 538 "contexts": ["blessed_extension"] | 542 "contexts": ["blessed_extension"] |
| 539 }, | 543 }, |
| 540 "notifications": { | 544 "notifications": { |
| 541 "dependencies": ["permission:notifications"], | 545 "dependencies": ["permission:notifications"], |
| 542 "contexts": ["blessed_extension"] | 546 "contexts": ["blessed_extension"] |
| 543 }, | 547 }, |
| 544 "omnibox": { | 548 "omnibox": { |
| 545 "dependencies": ["manifest:omnibox"], | 549 "dependencies": ["manifest:omnibox"], |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 "internal": true, | 700 "internal": true, |
| 697 "channel": "stable", | 701 "channel": "stable", |
| 698 "dependencies": ["permission:webview"], | 702 "dependencies": ["permission:webview"], |
| 699 "contexts": ["blessed_extension"] | 703 "contexts": ["blessed_extension"] |
| 700 }, | 704 }, |
| 701 "windows": { | 705 "windows": { |
| 702 "dependencies": ["api:tabs"], | 706 "dependencies": ["api:tabs"], |
| 703 "contexts": ["blessed_extension"] | 707 "contexts": ["blessed_extension"] |
| 704 } | 708 } |
| 705 } | 709 } |
| OLD | NEW |