Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: chrome/third_party/chromevox/extensions/searchvox/constants.js

Issue 274963004: Update latest ChromeVox from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 Google Inc. All Rights Reserved.
2
3 /**
4 * @fileoverview Constants for Search.
5 * @author peterxiao@google.com (Peter Xiao)
6 */
7
8 goog.provide('cvox.SearchConstants');
9
10 /**
11 * @constructor
12 */
13 cvox.SearchConstants = function() {
14 };
15
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
28 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698