Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / third_party / chromevox / extensions / searchvox / constants.js
blob2070b49c4f8c6e9edcec23853150b04aa9ac1e58
1 // Copyright 2013 Google Inc. All Rights Reserved.
3 /**
4  * @fileoverview Constants for Search.
5  * @author peterxiao@google.com (Peter Xiao)
6  */
8 goog.provide('cvox.SearchConstants');
10 /**
11  * @constructor
12  */
13 cvox.SearchConstants = function() {
16 /**
17  * Keycodes.
18  */
19 cvox.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