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