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

Unified Diff: chrome/browser/resources/chromeos/chromevox/host/interface/braille_interface.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/host/interface/braille_interface.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/interface/braille_interface.js b/chrome/browser/resources/chromeos/chromevox/host/interface/braille_interface.js
index 754a961684d281e37a404d3c11f14f4aae3bb103..39fe7dc8651415557dfa9b05c4abec46f16afc5a 100644
--- a/chrome/browser/resources/chromeos/chromevox/host/interface/braille_interface.js
+++ b/chrome/browser/resources/chromeos/chromevox/host/interface/braille_interface.js
@@ -18,15 +18,14 @@ goog.require('cvox.NavBraille');
/**
* @interface
*/
-cvox.BrailleInterface = function() { };
+cvox.BrailleInterface = function() {};
/**
* Sends the given params to the Braille display for output.
* @param {!cvox.NavBraille} params Parameters to send to the
* platform braille service.
*/
-cvox.BrailleInterface.prototype.write =
- function(params) { };
+cvox.BrailleInterface.prototype.write = function(params) {};
/**
* Takes an image in the form of a data url and outputs it to a Braille
@@ -34,22 +33,21 @@ cvox.BrailleInterface.prototype.write =
* @param {!string} imageDataUrl The image to output, in the form of a
* dataUrl.
*/
-cvox.BrailleInterface.prototype.writeRawImage =
- function(imageDataUrl) { };
+cvox.BrailleInterface.prototype.writeRawImage = function(imageDataUrl) {};
/**
* Freeze whatever is on the braille display until the next call to thaw().
*/
-cvox.BrailleInterface.prototype.freeze = function() { };
+cvox.BrailleInterface.prototype.freeze = function() {};
/**
* Un-freeze the braille display so that it can be written to again.
*/
-cvox.BrailleInterface.prototype.thaw = function() { };
+cvox.BrailleInterface.prototype.thaw = function() {};
/**
* @return {!cvox.BrailleDisplayState} The current display state.
*/
-cvox.BrailleInterface.prototype.getDisplayState = function() { };
+cvox.BrailleInterface.prototype.getDisplayState = function() {};

Powered by Google App Engine
This is Rietveld 408576698