Only grant permissions to new extensions from sync if they have the expected version
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / chromevox / extensions / searchvox / constants.js
blob5fcdcc728f9ce94b258e79ed28f3d95d08e570bc
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 /**
7 * @fileoverview Constants for Search.
8 */
10 goog.provide('cvox.SearchConstants');
12 /**
13 * @constructor
15 cvox.SearchConstants = function() {
18 /**
19 * Keycodes.
21 cvox.SearchConstants.KeyCode = {
22 UP: 38,
23 DOWN: 40,
24 PAGE_UP: 33,
25 PAGE_DOWN: 34,
26 LEFT: 37,
27 RIGHT: 39,
28 ENTER: 13,
29 ESC: 27