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

Unified Diff: chrome/test/data/extensions/manifest_tests/command_app_global.json

Issue 44553002: Enabling Commands API for Apps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/manifest_tests/command_app_global.json
diff --git a/chrome/test/data/extensions/manifest_tests/command_app_global.json b/chrome/test/data/extensions/manifest_tests/command_app_global.json
new file mode 100644
index 0000000000000000000000000000000000000000..695668a2247ce92a079fcbe0e7972b97c2ecc413
--- /dev/null
+++ b/chrome/test/data/extensions/manifest_tests/command_app_global.json
@@ -0,0 +1,15 @@
+{
+ "name": "Command test - App with Command that is global",
+ "manifest_version": 2,
+ "version": "1",
+ "app": {
+ "background": { "scripts": ["background.js"] }
+ },
+ "commands": {
+ "feature1": {
+ "suggested_key": "Ctrl+Shift+0",
+ "description": "desc",
+ "global": true
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698