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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/editable_text.js

Issue 1362223003: Improve braille related message descriptions and clean up message handling in Chromevox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@inputtypeexception
Patch Set: Move another braille message to Msgs.Untranslated Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/common/editable_text.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/editable_text.js b/chrome/browser/resources/chromeos/chromevox/common/editable_text.js
index d336d37f1d56381818753e6fe95f1989c6b92b7f..9d116d24ed47f0a3ade2ead045a2ebbd9c44e0c3 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/editable_text.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/editable_text.js
@@ -560,7 +560,7 @@ cvox.ChromeVoxEditableContentEditable.prototype.changed =
}
// Take over here if we can't describe a change; assume it's a blank line.
if (!this.shouldDescribeChange(evt)) {
- this.speak(cvox.ChromeVox.msgs.getMsg('text_box_blank'), true);
+ this.speak(Msgs.getMsg('text_box_blank'), true);
if (this.brailleHandler_) {
this.brailleHandler_.changed('' /*line*/, 0 /*start*/, 0 /*end*/,
true /*multiline*/, null /*element*/,

Powered by Google App Engine
This is Rietveld 408576698