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

Unified Diff: chrome/test/data/extensions/platform_apps/web_view/context_menus/basic/manifest.json

Issue 186213003: <webview>: Context menu API implementation CL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync @tott Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/platform_apps/web_view/context_menus/basic/manifest.json
diff --git a/chrome/test/data/extensions/platform_apps/web_view/context_menus/basic/manifest.json b/chrome/test/data/extensions/platform_apps/web_view/context_menus/basic/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..1171912d58617ba70631c5db5840d4485c8fa35c
--- /dev/null
+++ b/chrome/test/data/extensions/platform_apps/web_view/context_menus/basic/manifest.json
@@ -0,0 +1,15 @@
+{
+ "name": "Packaged App Test: <webview> contextMenus API",
+ "description": "Verifies basic functionality of <webview> contextMenus API.",
+ "version": "1",
+ "permissions": [
+ "webview",
+ /* TODO(lazyboy): Fix embedder requiring contextMenus permission. */
+ "contextMenus"
+ ],
+ "app": {
+ "background": {
+ "scripts": ["test.js"]
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698