| // Copyright 2014 The Chromium Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| /** | |
| * @fileoverview Constants for Search. | |
| */ | |
| goog.provide('cvox.SearchConstants'); | |
| /** | |
| * @constructor | |
| */ | |
| cvox.SearchConstants = function() { | |
| }; | |
| /** | |
| * Keycodes. | |
| */ | |
| cvox.SearchConstants.KeyCode = { | |
| UP: 38, | |
| DOWN: 40, | |
| PAGE_UP: 33, | |
| PAGE_DOWN: 34, | |
| LEFT: 37, | |
| RIGHT: 39, | |
| ENTER: 13, | |
| ESC: 27 | |
| }; |