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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/panel_menu_item.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/panel_menu_item.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel_menu_item.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel_menu_item.js
index d5b2ff0ce6e658333599d7394056c5241f37843d..316995ca63a3b1d0775cf4a825e979b8d5751dd6 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel_menu_item.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel_menu_item.js
@@ -24,9 +24,11 @@ PanelMenuItem = function(
this.element.tabIndex = -1;
this.element.setAttribute('role', 'menuitem');
- this.element.addEventListener('mouseover', (function(evt) {
- this.element.focus();
- }).bind(this), false);
+ this.element.addEventListener(
+ 'mouseover', (function(evt) {
+ this.element.focus();
+ }).bind(this),
+ false);
var title = document.createElement('td');
title.className = 'menu-item-title';

Powered by Google App Engine
This is Rietveld 408576698