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

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

Issue 553243002: Track the active ExtensionKeybindingRegistry and make it available to EventRewriter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Address sky's comment. 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 shortcuts propagation",
3 "version": "1.0",
4 "manifest_version": 2,
5 "background": {
6 "scripts": ["background.js"]
7 },
8 "permissions": [ "tabs" ],
9 "commands": {
10 "Search-Shift-Left": {
11 "description": "Test non-conversion of this key",
12 "suggested_key": {
13 "chromeos": "Search+Shift+Left"
14 }
15 },
16 "Search-Shift-Up": {
Devlin 2014/09/11 18:41:01 nit: indentation
David Tseng 2014/09/11 19:34:20 Done.
17 "description": "Test non-conversion of this key",
18 "suggested_key": {
19 "chromeos": "Search+Shift+Up"
20 }
21 },
22 "Search-Shift-Right": {
23 "description": "Test non-conversion of this key",
24 "suggested_key": {
25 "chromeos": "Search+Shift+Right"
26 }
27 },
28 "Search-Shift-Down": {
29 "description": "Test non-conversion of this key",
30 "suggested_key": {
31 "chromeos": "Search+Shift+Down"
32 }
33 }
34 }
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698