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

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

Issue 880063002: Ensure WebView notifies desktop automation on creation, destruction, and change (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix leaks? 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');
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
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 /******************************************/
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698