Home
last modified time | relevance | path

Searched refs:commandsAndKeySequences (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/
Dkey_map.js35 cvox.KeyMap = function(commandsAndKeySequences) { argument
42 this.bindings_ = commandsAndKeySequences;
340 var commandsAndKeySequences =
344 commandsAndKeySequences = commandsAndKeySequences.filter(function(value) {
353 if (typeof(commandsAndKeySequences) != 'object') {
356 for (var i = 0; i < commandsAndKeySequences.length; i++) {
357 if (commandsAndKeySequences[i].command == undefined ||
358 commandsAndKeySequences[i].sequence == undefined) {
361 commandsAndKeySequences[i].sequence = /** @type {cvox.KeySequence} */
362 (cvox.KeySequence.deserialize(commandsAndKeySequences[i].sequence));
[all …]