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

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

Issue 25305002: Implement initial chrome.browserAction.openPopup API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move to interactive_ui_test Created 7 years, 2 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
OLDNEW
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 // See c/c/e/features/* to understand this file, in particular feature.h, 5 // See c/c/e/features/* to understand this file, in particular feature.h,
6 // simple_feature.h, and base_feature_provider.h. 6 // simple_feature.h, and base_feature_provider.h.
7 7
8 { 8 {
9 "activityLogPrivate": { 9 "activityLogPrivate": {
10 "dependencies": ["permission:activityLogPrivate"], 10 "dependencies": ["permission:activityLogPrivate"],
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 "location": "component" 97 "location": "component"
98 }, 98 },
99 "brailleDisplayPrivate": { 99 "brailleDisplayPrivate": {
100 "dependencies": ["permission:brailleDisplayPrivate"], 100 "dependencies": ["permission:brailleDisplayPrivate"],
101 "contexts": ["blessed_extension"] 101 "contexts": ["blessed_extension"]
102 }, 102 },
103 "browserAction": { 103 "browserAction": {
104 "dependencies": ["manifest:browser_action"], 104 "dependencies": ["manifest:browser_action"],
105 "contexts": ["blessed_extension"] 105 "contexts": ["blessed_extension"]
106 }, 106 },
107 // This API is whitelisted on stable and should not be enabled for a wider
108 // audience without resolving security issues raised in API proposal and
109 // review (https://codereview.chromium.org/25305002).
110 "browserAction.openPopup": [{
111 "channel": "dev",
112 "dependencies": ["manifest:browser_action"],
113 "contexts": ["blessed_extension"]
114 }, {
115 "channel": "stable",
116 "dependencies": ["manifest:browser_action"],
117 "whitelist": [
118 "enhhojjnijigcajfphajepfemndkmdlo", // Dev
119 "pkedcjkdefgpdelpbcmbmeomcjbeemfm", // Trusted Tester
120 "fmfcbgogabcbclcofgocippekhfcmgfj", // Staging
121 "hfaagokkkhdbgiakmmlclaapfelnkoah", // Canary
122 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Trusted Tester (public)
123 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264" // Release
124 ],
125 "contexts": ["blessed_extension"]
126 }],
107 "browsingData": { 127 "browsingData": {
108 "dependencies": ["permission:browsingData"], 128 "dependencies": ["permission:browsingData"],
109 "contexts": ["blessed_extension"] 129 "contexts": ["blessed_extension"]
110 }, 130 },
111 "cast.channel": { 131 "cast.channel": {
112 "dependencies": ["permission:cast"], 132 "dependencies": ["permission:cast"],
113 "contexts": ["blessed_extension"] 133 "contexts": ["blessed_extension"]
114 }, 134 },
115 "chromeosInfoPrivate": { 135 "chromeosInfoPrivate": {
116 "platforms": ["chromeos"], 136 "platforms": ["chromeos"],
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 "internal": true, 705 "internal": true,
686 "channel": "stable", 706 "channel": "stable",
687 "dependencies": ["permission:webview"], 707 "dependencies": ["permission:webview"],
688 "contexts": ["blessed_extension"] 708 "contexts": ["blessed_extension"]
689 }, 709 },
690 "windows": { 710 "windows": {
691 "dependencies": ["api:tabs"], 711 "dependencies": ["api:tabs"],
692 "contexts": ["blessed_extension"] 712 "contexts": ["blessed_extension"]
693 } 713 }
694 } 714 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698