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

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

Issue 1702913002: Make updates to ChromeVox KB Explorer for Next. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 10 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 } 397 }
398 }, 398 },
399 { 399 {
400 "command": "increaseTtsPitch", 400 "command": "increaseTtsPitch",
401 "sequence": { 401 "sequence": {
402 "cvoxModifier": true, 402 "cvoxModifier": true,
403 "keys": { 403 "keys": {
404 "keyCode": [222] 404 "keyCode": [222]
405 } 405 }
406 } 406 }
407 },
408 {
409 "command": "stopSpeech",
410 "sequence": {
411 "keys": {
412 "ctrlKey": [true],
413 "keyCode": [17]
414 }
415 }
416 },
417 {
418 "command": "showKbExplorerPage",
419 "sequence": {
420 "cvoxModifier": true,
421 "keys": {
422 "keyCode": [79, 75]
423 }
424 }
425 },
426 {
427 "command": "showOptionsPage",
428 "sequence": {
429 "cvoxModifier": true,
430 "keys": {
431 "keyCode": [79, 79]
432 }
433 }
407 } 434 }
408 ] 435 ]
409 } 436 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698