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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "name": "An extension to test non-conversion of Chrome OS shortcuts.",
3 "version": "1.0",
4 "manifest_version": 2,
5 "background": {
6 "scripts": ["background.js"]
7 },
8 "commands": {
9 "Search-Shift-Left": {
10 "description": "Test non-conversion of this key",
11 "suggested_key": {
12 "chromeos": "Search+Shift+Left"
13 }
14 },
15 "Search-Shift-Up": {
16 "description": "Test non-conversion of this key",
17 "suggested_key": {
18 "chromeos": "Search+Shift+Up"
19 }
20 },
21 "Search-Shift-Right": {
22 "description": "Test non-conversion of this key",
23 "suggested_key": {
24 "chromeos": "Search+Shift+Right"
25 }
26 },
27 "Search-Shift-Down": {
28 "description": "Test non-conversion of this key",
29 "suggested_key": {
30 "chromeos": "Search+Shift+Down"
31 }
32 }
33 }
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698