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

Unified Diff: chrome/browser/resources/chromeos/chromevox/testing/tester.js

Issue 1302763002: Add tests for braille commands. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@js2gtesterr
Patch Set: Document gn template args, rename extra_gen_files to gen_include_files Created 5 years, 4 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
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/testing/mock_tts.js ('k') | chrome/test/base/js2gtest.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 47dce50e71804f77d83cf3d6712dd11eb5d52dc1..e2a6ea46120fd9485206ed4abecb217502520271 100644
--- a/chrome/browser/resources/chromeos/chromevox/testing/tester.js
+++ b/chrome/browser/resources/chromeos/chromevox/testing/tester.js
@@ -4,8 +4,8 @@
goog.provide('cvox.ChromeVoxTester');
-goog.require('cvox.AbstractBraille');
goog.require('cvox.AbstractEarcons');
+goog.require('cvox.BrailleInterface');
goog.require('cvox.ChromeVoxEventWatcher');
goog.require('cvox.ChromeVoxUserCommands');
goog.require('cvox.LiveRegions');
@@ -40,7 +40,7 @@ cvox.ChromeVoxTester.setUp = function(doc) {
cvox.ChromeVox.earcons = new cvox.AbstractEarcons();
cvox.ChromeVox.earcons.playEarcon = function(earcon) { };
- cvox.ChromeVox.braille = new cvox.AbstractBraille();
+ cvox.ChromeVox.braille = new cvox.BrailleInterface();
cvox.ChromeVox.braille.write = function(params) {};
cvox.ChromeVox.msgs = new cvox.TestMsgs();
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/testing/mock_tts.js ('k') | chrome/test/base/js2gtest.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698