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

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

Issue 576413002: Reland Track the active ExtensionKeybindingRegistry and make it available to EventRewriter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Created 6 years, 3 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/chromeos_conversions/manifest.json
diff --git a/chrome/test/data/extensions/api_test/keybinding/chromeos_conversions/manifest.json b/chrome/test/data/extensions/api_test/keybinding/chromeos_conversions/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..a22417522236c14cc78495022ae5d9dc03611a70
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/keybinding/chromeos_conversions/manifest.json
@@ -0,0 +1,34 @@
+{
+ "name": "An extension to test non-conversion of Chrome OS shortcuts.",
+ "version": "1.0",
+ "manifest_version": 2,
+ "background": {
+ "scripts": ["background.js"]
+ },
+ "commands": {
+ "Search-Shift-Left": {
+ "description": "Test non-conversion of this key",
+ "suggested_key": {
+ "chromeos": "Search+Shift+Left"
+ }
+ },
+ "Search-Shift-Up": {
+ "description": "Test non-conversion of this key",
+ "suggested_key": {
+ "chromeos": "Search+Shift+Up"
+ }
+ },
+ "Search-Shift-Right": {
+ "description": "Test non-conversion of this key",
+ "suggested_key": {
+ "chromeos": "Search+Shift+Right"
+ }
+ },
+ "Search-Shift-Down": {
+ "description": "Test non-conversion of this key",
+ "suggested_key": {
+ "chromeos": "Search+Shift+Down"
+ }
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698