1// Copyright 2013 Google Inc. All Rights Reserved. 2 3/** 4 * @fileoverview Constants for Search. 5 * @author peterxiao@google.com (Peter Xiao) 6 */ 7 8goog.provide('cvox.SearchConstants'); 9 10/** 11 * @constructor 12 */ 13cvox.SearchConstants = function() { 14}; 15 16/** 17 * Keycodes. 18 */ 19cvox.SearchConstants.KeyCode = { 20 UP: 38, 21 DOWN: 40, 22 PAGE_UP: 33, 23 PAGE_DOWN: 34, 24 LEFT: 37, 25 RIGHT: 39, 26 ENTER: 13, 27 ESC: 27 28}; 29