Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(401)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/common/editable_text_base.js

Issue 908853004: Revert of Reland #2: Ensure WebView notifies desktop automation on creation, destruction, and change Original (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 /******************************************/
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698