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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/chromevox/background/externs.js

Issue 1953613002: Make touch accessibility gestures work with ChromeVox Next (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback Created 4 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Common external variables when compiling ChromeVox background code 5 // Common external variables when compiling ChromeVox background code
6 6
7 var localStorage = {}; 7 var localStorage = {};
8 8
9 /** 9 /**
10 * @type {Object} 10 * @type {Object}
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 /** @type ChromeEvent */ 62 /** @type ChromeEvent */
63 chrome.accessibilityPrivate.onControlAction; 63 chrome.accessibilityPrivate.onControlAction;
64 64
65 /** @type ChromeEvent */ 65 /** @type ChromeEvent */
66 chrome.accessibilityPrivate.onControlHover; 66 chrome.accessibilityPrivate.onControlHover;
67 67
68 /** @type ChromeEvent */ 68 /** @type ChromeEvent */
69 chrome.accessibilityPrivate.onTextChanged; 69 chrome.accessibilityPrivate.onTextChanged;
70 70
71 /** @type ChromeEvent */ 71 /** @type ChromeEvent */
72 chrome.accessibilityPrivate.onChromeVoxLoadStateChanged; 72 chrome.accessibilityPrivate.onAccessibilityGesture;
73 /** @type {function()} */
74 chrome.accessibilityPrivate.onChromeVoxLoadStateChanged.destroy_;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698