| 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 /** | 5 /** |
| 6 * @fileoverview Provides output services for ChromeVox. | 6 * @fileoverview Provides output services for ChromeVox. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 goog.provide('Output'); | 9 goog.provide('Output'); |
| 10 goog.provide('Output.EventType'); | 10 goog.provide('Output.EventType'); |
| 11 | 11 |
| 12 goog.require('AutomationUtil.Dir'); | 12 goog.require('AutomationUtil.Dir'); |
| 13 goog.require('EarconEngine'); |
| 13 goog.require('cursors.Cursor'); | 14 goog.require('cursors.Cursor'); |
| 14 goog.require('cursors.Range'); | 15 goog.require('cursors.Range'); |
| 15 goog.require('cursors.Unit'); | 16 goog.require('cursors.Unit'); |
| 16 goog.require('cvox.AbstractEarcons'); | 17 goog.require('cvox.AbstractEarcons'); |
| 17 goog.require('cvox.NavBraille'); | 18 goog.require('cvox.NavBraille'); |
| 18 goog.require('cvox.Spannable'); | 19 goog.require('cvox.Spannable'); |
| 19 goog.require('cvox.ValueSelectionSpan'); | 20 goog.require('cvox.ValueSelectionSpan'); |
| 20 goog.require('cvox.ValueSpan'); | 21 goog.require('cvox.ValueSpan'); |
| 21 goog.require('goog.i18n.MessageFormat'); | 22 goog.require('goog.i18n.MessageFormat'); |
| 22 | 23 |
| (...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1291 elem.end); | 1292 elem.end); |
| 1292 }); | 1293 }); |
| 1293 spansToRemove.forEach(result.removeSpan.bind(result)); | 1294 spansToRemove.forEach(result.removeSpan.bind(result)); |
| 1294 separator = Output.SPACE; | 1295 separator = Output.SPACE; |
| 1295 }); | 1296 }); |
| 1296 return result; | 1297 return result; |
| 1297 } | 1298 } |
| 1298 }; | 1299 }; |
| 1299 | 1300 |
| 1300 }); // goog.scope | 1301 }); // goog.scope |
| OLD | NEW |