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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_object_constructor_installer.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/automation_object_constructor_installer.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_object_constructor_installer.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_object_constructor_installer.js
index de18ba92835a97a99119e1abe76ccbfe833f4c0f..f79cf30ec0d9eb518ba480858c7f63a3cd8f7ac1 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_object_constructor_installer.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_object_constructor_installer.js
@@ -20,17 +20,17 @@ goog.provide('AutomationObjectConstructorInstaller');
*/
AutomationObjectConstructorInstaller.init = function(node, callback) {
chrome.automation.AutomationNode =
- /** @type {function (new:chrome.automation.AutomationNode)} */(
+ /** @type {function (new:chrome.automation.AutomationNode)} */ (
node.constructor);
- node.addEventListener(chrome.automation.EventType.CHILDREN_CHANGED,
+ node.addEventListener(
+ chrome.automation.EventType.CHILDREN_CHANGED,
function installAutomationEvent(e) {
chrome.automation.AutomationEvent =
- /** @type {function (new:chrome.automation.AutomationEvent)} */(
+ /** @type {function (new:chrome.automation.AutomationEvent)} */ (
e.constructor);
node.removeEventListener(
chrome.automation.EventType.CHILDREN_CHANGED,
- installAutomationEvent,
- true);
+ installAutomationEvent, true);
callback();
},
true);

Powered by Google App Engine
This is Rietveld 408576698