Chromium Code Reviews| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 61 | 61 |
| 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|function(): void} */ |
| 72 chrome.accessibilityPrivate.onAccessibilityGesture; | 72 chrome.accessibilityPrivate. |
| 73 onAccessibilityGesture; | |
|
dmazzoni
2016/06/27 22:52:48
nit: no newline needed
| |
| OLD | NEW |