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

Unified Diff: chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.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/table_shifter.js
diff --git a/chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js b/chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js
index 98409b7d345c4e20f0524c6f1704bb759f512ecf..8ba377f2f1476df1116be145dfa55e3b61d72ae2 100644
--- a/chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js
+++ b/chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js
@@ -53,7 +53,7 @@ cvox.TableShifter.prototype.next = function(sel) {
cvox.TableShifter.prototype.sync = function(sel) {
if (sel.start.node.tagName == 'TABLE') {
return sel.isReversed() ? this.currentWalker_.goToLastCell(sel) :
- this.currentWalker_.goToFirstCell(sel);
+ this.currentWalker_.goToFirstCell(sel);
}
return this.currentWalker_.sync(sel);
};
@@ -93,10 +93,8 @@ cvox.TableShifter.prototype.getDescription = function(prevSel, sel) {
}));
}
if (this.currentWalker_.tt.isSpanned()) {
- descs.push(new cvox.NavDescription({
- text: '',
- annotation: Msgs.getMsg('spanned')
- }));
+ descs.push(new cvox.NavDescription(
+ {text: '', annotation: Msgs.getMsg('spanned')}));
}
this.begin_ = false;
}

Powered by Google App Engine
This is Rietveld 408576698