| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 goog.provide('cvox.ChromeVoxEditableTextBase'); | 5 goog.provide('cvox.ChromeVoxEditableTextBase'); |
| 6 goog.provide('cvox.TextChangeEvent'); | 6 goog.provide('cvox.TextChangeEvent'); |
| 7 goog.provide('cvox.TypingEcho'); | 7 goog.provide('cvox.TypingEcho'); |
| 8 | 8 |
| 9 goog.require('cvox.AbstractTts'); |
| 9 goog.require('cvox.ChromeVox'); | 10 goog.require('cvox.ChromeVox'); |
| 10 goog.require('cvox.TtsInterface'); | 11 goog.require('cvox.TtsInterface'); |
| 11 goog.require('goog.i18n.MessageFormat'); | 12 goog.require('goog.i18n.MessageFormat'); |
| 12 | 13 |
| 13 | 14 |
| 14 /** | 15 /** |
| 15 * @fileoverview Generalized logic for providing spoken feedback when editing | 16 * @fileoverview Generalized logic for providing spoken feedback when editing |
| 16 * text fields, both single and multiline fields. | 17 * text fields, both single and multiline fields. |
| 17 * | 18 * |
| 18 * {@code ChromeVoxEditableTextBase} is a generalized class that takes the | 19 * {@code ChromeVoxEditableTextBase} is a generalized class that takes the |
| (...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 | 703 |
| 703 /** | 704 /** |
| 704 * Moves the cursor backward by one paragraph. | 705 * Moves the cursor backward by one paragraph. |
| 705 * @return {boolean} True if the action was handled. | 706 * @return {boolean} True if the action was handled. |
| 706 */ | 707 */ |
| 707 cvox.ChromeVoxEditableTextBase.prototype.moveCursorToPreviousParagraph = | 708 cvox.ChromeVoxEditableTextBase.prototype.moveCursorToPreviousParagraph = |
| 708 function() { return false; }; | 709 function() { return false; }; |
| 709 | 710 |
| 710 | 711 |
| 711 /******************************************/ | 712 /******************************************/ |
| OLD | NEW |