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

Unified Diff: chrome/browser/resources/chromeos/chromevox/walkers/abstract_walker.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/walkers/abstract_walker.js
diff --git a/chrome/browser/resources/chromeos/chromevox/walkers/abstract_walker.js b/chrome/browser/resources/chromeos/chromevox/walkers/abstract_walker.js
index c704cd9f437b2f22b678847f4f2b7e3926b55af6..bf77fd939f2984158428484bec15e5c47878d3a9 100644
--- a/chrome/browser/resources/chromeos/chromevox/walkers/abstract_walker.js
+++ b/chrome/browser/resources/chromeos/chromevox/walkers/abstract_walker.js
@@ -46,8 +46,7 @@ goog.require('cvox.NavBraille');
/**
* @constructor
*/
-cvox.AbstractWalker = function() {
-};
+cvox.AbstractWalker = function() {};
/**
@@ -86,8 +85,8 @@ cvox.AbstractWalker.prototype.next = goog.abstractMethod;
cvox.AbstractWalker.prototype.begin = function(kwargs) {
kwargs = kwargs || {reversed: false};
- return /** @type {!cvox.CursorSelection} */ (this.sync(
- cvox.CursorSelection.fromBody().setReversed(kwargs.reversed)));
+ return /** @type {!cvox.CursorSelection} */ (
+ this.sync(cvox.CursorSelection.fromBody().setReversed(kwargs.reversed)));
};

Powered by Google App Engine
This is Rietveld 408576698