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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json

Issue 2768703002: Wire up an api to darken screen for accessibility (Closed)
Patch Set: Rebase. Created 3 years, 9 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
1 { 1 {
2 "bindings": [ 2 "bindings": [
3 { 3 {
4 "command": "previousObject", 4 "command": "previousObject",
5 "sequence": { 5 "sequence": {
6 "cvoxModifier": true, 6 "cvoxModifier": true,
7 "keys": { 7 "keys": {
8 "keyCode": [37] 8 "keyCode": [37]
9 } 9 }
10 } 10 }
(...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 }, 888 },
889 { 889 {
890 "command": "nextGroup", 890 "command": "nextGroup",
891 "sequence": { 891 "sequence": {
892 "cvoxModifier": true, 892 "cvoxModifier": true,
893 "keys": { 893 "keys": {
894 "keyCode": [40], 894 "keyCode": [40],
895 "ctrlKey": [true] 895 "ctrlKey": [true]
896 } 896 }
897 } 897 }
898 },
899 {
900 "command": "darkenScreen",
901 "sequence": {
902 "cvoxModifier": true,
903 "keys": {
904 "keyCode": [118],
905 "shiftKey": [true]
906 }
907 }
908 },
909 {
910 "command": "undarkenScreen",
911 "sequence": {
912 "cvoxModifier": true,
913 "keys": {
914 "keyCode": [118]
915 }
916 }
898 } 917 }
899 ] 918 ]
900 } 919 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698