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

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

Issue 2148043002: Whitelist extension APIs from md-settings in settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | no next file » | 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 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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 "dependencies": ["permission:input"], 541 "dependencies": ["permission:input"],
542 "contexts": ["blessed_extension"] 542 "contexts": ["blessed_extension"]
543 }, 543 },
544 "inputMethodPrivate": [{ 544 "inputMethodPrivate": [{
545 "dependencies": ["permission:inputMethodPrivate"], 545 "dependencies": ["permission:inputMethodPrivate"],
546 "contexts": ["blessed_extension"] 546 "contexts": ["blessed_extension"]
547 }, { 547 }, {
548 "channel": "stable", 548 "channel": "stable",
549 "contexts": ["webui"], 549 "contexts": ["webui"],
550 "matches": [ 550 "matches": [
551 "chrome://md-settings/*" 551 "chrome://md-settings/*",
552 "chrome://settings/*"
552 ] 553 ]
553 }], 554 }],
554 "instanceID": { 555 "instanceID": {
555 "dependencies": ["permission:gcm"], 556 "dependencies": ["permission:gcm"],
556 "contexts": ["blessed_extension"] 557 "contexts": ["blessed_extension"]
557 }, 558 },
558 "languageSettingsPrivate": [{ 559 "languageSettingsPrivate": [{
559 "dependencies": ["permission:languageSettingsPrivate"], 560 "dependencies": ["permission:languageSettingsPrivate"],
560 "contexts": ["blessed_extension"] 561 "contexts": ["blessed_extension"]
561 }, { 562 }, {
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 }, 693 },
693 "imageWriterPrivate": { 694 "imageWriterPrivate": {
694 "dependencies": ["permission:imageWriterPrivate"], 695 "dependencies": ["permission:imageWriterPrivate"],
695 "extension_types": ["platform_app"], 696 "extension_types": ["platform_app"],
696 "contexts": ["blessed_extension"] 697 "contexts": ["blessed_extension"]
697 }, 698 },
698 "quickUnlockPrivate": { 699 "quickUnlockPrivate": {
699 "channel": "stable", 700 "channel": "stable",
700 "contexts": ["webui"], 701 "contexts": ["webui"],
701 "matches": [ 702 "matches": [
702 "chrome://md-settings/*" 703 "chrome://md-settings/*",
704 "chrome://settings/*"
703 ], 705 ],
704 "platforms": ["chromeos"] 706 "platforms": ["chromeos"]
705 }, 707 },
706 "resourcesPrivate": [{ 708 "resourcesPrivate": [{
707 "dependencies": ["permission:resourcesPrivate"], 709 "dependencies": ["permission:resourcesPrivate"],
708 "contexts": ["blessed_extension"] 710 "contexts": ["blessed_extension"]
709 }, { 711 }, {
710 "channel": "stable", 712 "channel": "stable",
711 "contexts": ["webui"], 713 "contexts": ["webui"],
712 "matches": [ 714 "matches": [
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 "internal": true, 847 "internal": true,
846 "channel": "stable", 848 "channel": "stable",
847 "dependencies": ["permission:webview"], 849 "dependencies": ["permission:webview"],
848 "contexts": ["blessed_extension"] 850 "contexts": ["blessed_extension"]
849 }, 851 },
850 "windows": { 852 "windows": {
851 "dependencies": ["api:tabs"], 853 "dependencies": ["api:tabs"],
852 "contexts": ["blessed_extension"] 854 "contexts": ["blessed_extension"]
853 } 855 }
854 } 856 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698