| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 chrome/common/extensions/api/_features.md to understand this file, as | 6 // See chrome/common/extensions/api/_features.md to understand this file, as |
| 7 // well as feature.h, simple_feature.h, and feature_provider.h. | 7 // well as feature.h, simple_feature.h, and 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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 ] | 570 ] |
| 571 }], | 571 }], |
| 572 "launcherPage": { | 572 "launcherPage": { |
| 573 "dependencies": ["manifest:launcher_page"], | 573 "dependencies": ["manifest:launcher_page"], |
| 574 "contexts": ["blessed_extension"] | 574 "contexts": ["blessed_extension"] |
| 575 }, | 575 }, |
| 576 "launcherSearchProvider": { | 576 "launcherSearchProvider": { |
| 577 "dependencies": ["permission:launcherSearchProvider"], | 577 "dependencies": ["permission:launcherSearchProvider"], |
| 578 "contexts": ["blessed_extension"] | 578 "contexts": ["blessed_extension"] |
| 579 }, | 579 }, |
| 580 "logPrivate": { | |
| 581 "dependencies": ["permission:logPrivate"], | |
| 582 "contexts": ["blessed_extension"] | |
| 583 }, | |
| 584 "webcamPrivate": { | 580 "webcamPrivate": { |
| 585 "dependencies": ["permission:webcamPrivate"], | 581 "dependencies": ["permission:webcamPrivate"], |
| 586 "contexts": ["blessed_extension"] | 582 "contexts": ["blessed_extension"] |
| 587 }, | 583 }, |
| 588 // This is not a real API, only here for documentation purposes. | 584 // This is not a real API, only here for documentation purposes. |
| 589 // See http://crbug.com/275944 for background. | 585 // See http://crbug.com/275944 for background. |
| 590 "manifestTypes": { | 586 "manifestTypes": { |
| 591 "internal": true, | 587 "internal": true, |
| 592 "channel": "stable", | 588 "channel": "stable", |
| 593 "contexts": ["blessed_extension"] | 589 "contexts": ["blessed_extension"] |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 849 "dependencies": ["api:tabs"], | 845 "dependencies": ["api:tabs"], |
| 850 "contexts": ["blessed_extension"] | 846 "contexts": ["blessed_extension"] |
| 851 }, { | 847 }, { |
| 852 "channel": "stable", | 848 "channel": "stable", |
| 853 "contexts": ["webui"], | 849 "contexts": ["webui"], |
| 854 "matches": [ | 850 "matches": [ |
| 855 "chrome://bookmarks/*" | 851 "chrome://bookmarks/*" |
| 856 ] | 852 ] |
| 857 }] | 853 }] |
| 858 } | 854 } |
| OLD | NEW |