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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/editable_text_test.unitjs

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_test.unitjs
diff --git a/chrome/browser/resources/chromeos/chromevox/common/editable_text_test.unitjs b/chrome/browser/resources/chromeos/chromevox/common/editable_text_test.unitjs
index 0d00d79d04ffe52744ee25b4900a84973e7dfa7d..a122d096cb88b772ca45e7b865eacd01e81c8ba3 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/editable_text_test.unitjs
+++ b/chrome/browser/resources/chromeos/chromevox/common/editable_text_test.unitjs
@@ -114,14 +114,14 @@ CvoxEditableTextUnitTest.prototype = {
cvox.ChromeVox.braille = new TestBraille();
/** Simple mock. */
- cvox.ChromeVox.msgs = {};
+ Msgs = {};
/**
* Simply return the message id.
* @param {string} msg Message id.
* @return {string} Message id.
*/
- cvox.ChromeVox.msgs.getMsg = function(msg) {
+ Msgs.getMsg = function(msg) {
return msg;
};
},

Powered by Google App Engine
This is Rietveld 408576698