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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/braille_command_handler.js

Issue 2943193002: Run clang-format on .js files in c/b/r/chromeos/chromevox (Closed)
Patch Set: Created 3 years, 6 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/cvox2/background/braille_command_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/braille_command_handler.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/braille_command_handler.js
index 9469ee7e21b6dbaeb01c5a3096f261e76df41994..9cc7d0c271e3218d9a9eeb3822ee1fd8c3fb1437 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/braille_command_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/braille_command_handler.js
@@ -13,8 +13,7 @@ goog.scope(function() {
* Maps a dot pattern to a command.
* @type {!Object<number, string>}
*/
-BrailleCommandHandler.DOT_PATTERN_TO_COMMAND = {
-};
+BrailleCommandHandler.DOT_PATTERN_TO_COMMAND = {};
/**
* Makes a dot pattern given a list of dots numbered from 1 to 8 arranged in a
@@ -93,8 +92,9 @@ BrailleCommandHandler.getDots = function(command) {
*/
BrailleCommandHandler.init_ = function() {
var map = function(dots, command) {
- BrailleCommandHandler.DOT_PATTERN_TO_COMMAND[
- BrailleCommandHandler.makeDotPattern(dots)] = command;
+ BrailleCommandHandler
+ .DOT_PATTERN_TO_COMMAND[BrailleCommandHandler.makeDotPattern(dots)] =
+ command;
};
map([2, 3], 'previousGroup');
@@ -148,4 +148,4 @@ BrailleCommandHandler.init_ = function() {
BrailleCommandHandler.init_();
-}); // goog.scope
+}); // goog.scope

Powered by Google App Engine
This is Rietveld 408576698