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

Unified Diff: chrome/test/data/extensions/api_test/keybinding/continue_propagation/manifest.json

Issue 504183004: Continue key propagation for extensions without any listeners to chrome.commands.onCommand. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Add new test. Created 6 years, 4 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/api_test/keybinding/continue_propagation/manifest.json
diff --git a/chrome/test/data/extensions/api_test/keybinding/continue_propagation/manifest.json b/chrome/test/data/extensions/api_test/keybinding/continue_propagation/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..747dc4258e0333a655cb3bc0f84dabc54d921d7f
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/keybinding/continue_propagation/manifest.json
@@ -0,0 +1,23 @@
+{
+ "name": "An extension to test shortcuts propagation",
+ "version": "1.0",
+ "manifest_version": 2,
+ "background": {
+ "scripts": ["background.js"]
+ },
+ "permissions": [ "tabs" ],
+ "content_scripts": [
+ {
+ "matches": [ "<all_urls>" ],
+ "js": ["injected.js"]
+ }
+ ],
+ "commands": {
+ "CtrlShiftD": {
Finnur 2014/08/28 11:15:39 CtrlShiftD?
David Tseng 2014/08/28 23:37:11 Earlier keystroke I used which for some reason, do
+ "description": "Test propagation of this key",
+ "suggested_key": {
+ "default": "Ctrl+Shift+F"
+ }
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698