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

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

Issue 2379573008: Add SetImageData api to chrome.clipboard. (Closed)
Patch Set: Fix interactive_ui_tests issue. Created 4 years, 1 month 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 // This features file defines permissions for extension APIs implemented 5 // This features file defines permissions for extension APIs implemented
6 // under src/chrome. 6 // under src/chrome.
7 // See chrome/common/extensions/api/_features.md to understand this file, as 7 // See chrome/common/extensions/api/_features.md to understand this file, as
8 // well as feature.h, simple_feature.h, and base_feature_provider.h. 8 // well as feature.h, simple_feature.h, and base_feature_provider.h.
9 9
10 // If you add a new platform_app permission please update the "stubs_app" test: 10 // If you add a new platform_app permission please update the "stubs_app" test:
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 "96FF2FFA5C9173C76D47184B3E86D267B37781DE", // http://crbug.com/642141 143 "96FF2FFA5C9173C76D47184B3E86D267B37781DE", // http://crbug.com/642141
144 "0136FCB13DB29FD5CD442F56E59E53B61F1DF96F" // http://crbug.com/642141 144 "0136FCB13DB29FD5CD442F56E59E53B61F1DF96F" // http://crbug.com/642141
145 ] 145 ]
146 }, 146 },
147 "clipboardRead": { 147 "clipboardRead": {
148 "channel": "stable", 148 "channel": "stable",
149 "extension_types": [ 149 "extension_types": [
150 "extension", "legacy_packaged_app", "hosted_app", "platform_app" 150 "extension", "legacy_packaged_app", "hosted_app", "platform_app"
151 ] 151 ]
152 }, 152 },
153 "clipboardReadWrite": {
Devlin 2016/11/16 02:34:33 Why do we need this permission?
jennyz 2016/12/07 01:21:48 This permission is need to showing the warning str
Devlin 2016/12/09 15:23:43 But we have clipboardRead and clipboardWrite; can'
Devlin 2016/12/16 02:05:08 This still wasn't answered, either?
Devlin 2016/12/20 21:25:02 Again, this doesn't seem to have been answered.
jennyz 2016/12/20 22:16:53 Yes, that was what I originally did. But UI design
Devlin 2016/12/21 23:58:38 We should be able to solve that using permission r
jennyz 2016/12/22 22:45:20 Removed this permission and changed to add a permi
154 "channel": "dev",
155 "extension_types": [
156 "extension", "legacy_packaged_app", "hosted_app", "platform_app"
157 ]
158 },
153 "clipboardWrite": { 159 "clipboardWrite": {
154 "channel": "stable", 160 "channel": "stable",
155 "extension_types": [ 161 "extension_types": [
156 "extension", "legacy_packaged_app", "hosted_app", "platform_app" 162 "extension", "legacy_packaged_app", "hosted_app", "platform_app"
157 ] 163 ]
158 }, 164 },
159 "cloudPrintPrivate": { 165 "cloudPrintPrivate": {
160 "channel": "stable", 166 "channel": "stable",
161 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], 167 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"],
162 // CloudPrint 168 // CloudPrint
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 "channel": "stable", 946 "channel": "stable",
941 "extension_types": ["platform_app"], 947 "extension_types": ["platform_app"],
942 "platforms": ["chromeos"], 948 "platforms": ["chromeos"],
943 "whitelist": [ 949 "whitelist": [
944 "A948368FC53BE437A55FEB414106E207925482F5", // Files app 950 "A948368FC53BE437A55FEB414106E207925482F5", // Files app
945 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player 951 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player
946 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests 952 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests
947 ] 953 ]
948 } 954 }
949 } 955 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698