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

Unified Diff: chrome/browser/resources/chromeos/chromevox/testing/tester.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/testing/tester.js
diff --git a/chrome/browser/resources/chromeos/chromevox/testing/tester.js b/chrome/browser/resources/chromeos/chromevox/testing/tester.js
index e2a6ea46120fd9485206ed4abecb217502520271..bab5c6a1559b2b1b3d563ff4896a8bb45d13feaa 100644
--- a/chrome/browser/resources/chromeos/chromevox/testing/tester.js
+++ b/chrome/browser/resources/chromeos/chromevox/testing/tester.js
@@ -4,6 +4,7 @@
goog.provide('cvox.ChromeVoxTester');
+goog.require('TestMsgs');
goog.require('cvox.AbstractEarcons');
goog.require('cvox.BrailleInterface');
goog.require('cvox.ChromeVoxEventWatcher');
@@ -14,7 +15,6 @@ goog.require('cvox.NavigationShifter');
goog.require('cvox.QueueMode');
goog.require('cvox.TestHost');
goog.require('cvox.TestMathJax');
-goog.require('cvox.TestMsgs');
goog.require('cvox.TestTts');
@@ -43,7 +43,7 @@ cvox.ChromeVoxTester.setUp = function(doc) {
cvox.ChromeVox.braille = new cvox.BrailleInterface();
cvox.ChromeVox.braille.write = function(params) {};
- cvox.ChromeVox.msgs = new cvox.TestMsgs();
+ Msgs = TestMsgs;
cvox.ChromeVox.host = new cvox.TestHost();

Powered by Google App Engine
This is Rietveld 408576698