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

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

Issue 2379573008: Add SetImageData api to chrome.clipboard. (Closed)
Patch Set: Address code review comments and add test cases. Created 4 years 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 "96FF2FFA5C9173C76D47184B3E86D267B37781DE", // http://crbug.com/642141 145 "96FF2FFA5C9173C76D47184B3E86D267B37781DE", // http://crbug.com/642141
146 "0136FCB13DB29FD5CD442F56E59E53B61F1DF96F" // http://crbug.com/642141 146 "0136FCB13DB29FD5CD442F56E59E53B61F1DF96F" // http://crbug.com/642141
147 ] 147 ]
148 }, 148 },
149 "clipboardRead": { 149 "clipboardRead": {
150 "channel": "stable", 150 "channel": "stable",
151 "extension_types": [ 151 "extension_types": [
152 "extension", "legacy_packaged_app", "hosted_app", "platform_app" 152 "extension", "legacy_packaged_app", "hosted_app", "platform_app"
153 ] 153 ]
154 }, 154 },
155 "clipboardReadWrite": {
156 "channel": "dev",
157 "extension_types": [
158 "extension", "legacy_packaged_app", "hosted_app", "platform_app"
159 ]
160 },
155 "clipboardWrite": { 161 "clipboardWrite": {
156 "channel": "stable", 162 "channel": "stable",
157 "extension_types": [ 163 "extension_types": [
158 "extension", "legacy_packaged_app", "hosted_app", "platform_app" 164 "extension", "legacy_packaged_app", "hosted_app", "platform_app"
159 ] 165 ]
160 }, 166 },
161 "cloudPrintPrivate": { 167 "cloudPrintPrivate": {
162 "channel": "stable", 168 "channel": "stable",
163 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], 169 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"],
164 // CloudPrint 170 // CloudPrint
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 "channel": "stable", 948 "channel": "stable",
943 "extension_types": ["platform_app"], 949 "extension_types": ["platform_app"],
944 "platforms": ["chromeos"], 950 "platforms": ["chromeos"],
945 "whitelist": [ 951 "whitelist": [
946 "A948368FC53BE437A55FEB414106E207925482F5", // Files app 952 "A948368FC53BE437A55FEB414106E207925482F5", // Files app
947 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player 953 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player
948 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests 954 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests
949 ] 955 ]
950 } 956 }
951 } 957 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698