OLD | NEW |
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 Loading... |
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_; | |
OLD | NEW |