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

Unified Diff: chrome/test/data/extensions/api_test/clipboard/set_image_data/manifest.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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/clipboard/set_image_data/manifest.json
diff --git a/chrome/test/data/extensions/api_test/clipboard/set_image_data/manifest.json b/chrome/test/data/extensions/api_test/clipboard/set_image_data/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..423226023ab2a31f21bc38c248520db090bc9208
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/clipboard/set_image_data/manifest.json
@@ -0,0 +1,16 @@
+{
+ "manifest_version": 2,
+ "name": "chrome.clipboard.set_image_data",
+ "minimum_chrome_version": "56.0.0.0",
+ "version": "1.0",
+ "app": {
+ "background": {
+ "scripts": ["main.js"]
+ }
+ },
+ "permissions": [
+ "clipboard",
+ "clipboardReadWrite",
+ "http://localhost/*"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698