Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(349)

Side by Side Diff: chrome/common/extensions/api/_api_features.json

Issue 2950353004: [Extensions Bindings] Check availability of custom API properties (Closed)
Patch Set: . Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | extensions/common/features/feature_provider.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 "contexts": ["blessed_extension"] 662 "contexts": ["blessed_extension"]
663 }], 663 }],
664 "preferencesPrivate": { 664 "preferencesPrivate": {
665 "dependencies": ["permission:preferencesPrivate"], 665 "dependencies": ["permission:preferencesPrivate"],
666 "contexts": ["blessed_extension"] 666 "contexts": ["blessed_extension"]
667 }, 667 },
668 "privacy": { 668 "privacy": {
669 "dependencies": ["permission:privacy"], 669 "dependencies": ["permission:privacy"],
670 "contexts": ["blessed_extension"] 670 "contexts": ["blessed_extension"]
671 }, 671 },
672 "privacy.websites.protectedContentEnabled": {
jbroman 2017/06/27 19:49:57 Does this mean you intend to deprecate the explici
673 "platforms": ["chromeos", "win"]
674 },
672 "processes": { 675 "processes": {
673 "dependencies": ["permission:processes"], 676 "dependencies": ["permission:processes"],
674 "contexts": ["blessed_extension"] 677 "contexts": ["blessed_extension"]
675 }, 678 },
676 "proxy": { 679 "proxy": {
677 "dependencies": ["permission:proxy"], 680 "dependencies": ["permission:proxy"],
678 "contexts": ["blessed_extension"] 681 "contexts": ["blessed_extension"]
679 }, 682 },
680 "imageWriterPrivate": { 683 "imageWriterPrivate": {
681 "dependencies": ["permission:imageWriterPrivate"], 684 "dependencies": ["permission:imageWriterPrivate"],
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 "dependencies": ["api:tabs"], 848 "dependencies": ["api:tabs"],
846 "contexts": ["blessed_extension"] 849 "contexts": ["blessed_extension"]
847 }, { 850 }, {
848 "channel": "stable", 851 "channel": "stable",
849 "contexts": ["webui"], 852 "contexts": ["webui"],
850 "matches": [ 853 "matches": [
851 "chrome://bookmarks/*" 854 "chrome://bookmarks/*"
852 ] 855 ]
853 }] 856 }]
854 } 857 }
OLDNEW
« no previous file with comments | « no previous file | extensions/common/features/feature_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698