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

Unified Diff: chrome/browser/resources/chromeos/chromevox/braille/braille_input_handler_test.unitjs

Issue 1150173003: Fix some JS style nits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 7 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/braille/braille_input_handler_test.unitjs
diff --git a/chrome/browser/resources/chromeos/chromevox/braille/braille_input_handler_test.unitjs b/chrome/browser/resources/chromeos/chromevox/braille/braille_input_handler_test.unitjs
index 3b9ad703c3f6d33b672666a9362a7d648ae1135c..aeec1fb08d5994ae3faf9d212fbeefa10f9e79ee 100644
--- a/chrome/browser/resources/chromeos/chromevox/braille/braille_input_handler_test.unitjs
+++ b/chrome/browser/resources/chromeos/chromevox/braille/braille_input_handler_test.unitjs
@@ -266,7 +266,7 @@ function FakePort() {
/**
* Mapping from braille cells to Unicode characters.
- * @const Array.<Array.<string> >
+ * @const Array<Array<string> >
*/
var UNCONTRACTED_TABLE = [
['0', ' '],
@@ -295,7 +295,7 @@ var CONTRACTED_TABLE = [
/**
* A fake braille translator that can do back translation according
* to one of the tables above.
- * @param {Array.<Array.<number>>} table Backtranslation mapping.
+ * @param {Array<Array<number>>} table Backtranslation mapping.
* @param {boolean=} opt_capitalize Whether the result should be capitalized.
* @constructor
*/
@@ -402,7 +402,7 @@ FakeTranslatorManager.prototype = {
* Each group corresponds to one braille cell and each digit in a group
* corresponds to a particular dot in the cell (1 to 8). As a special
* case, the digit 0 by itself represents a blank cell.
- * @return {Array.<number>} An array with each cell encoded as a bit
+ * @return {Array<number>} An array with each cell encoded as a bit
* pattern (dot 1 uses bit 0, etc).
*/
function cellsToArray(cells) {

Powered by Google App Engine
This is Rietveld 408576698