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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/media_automation_handler.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/media_automation_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/media_automation_handler.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/media_automation_handler.js
index ff6f1fad3847f6a6ea5f1fcbcc2acb4be8f18931..3d597d81d3026cda10781bae5fc3218f8ee66b5f 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/media_automation_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/media_automation_handler.js
@@ -36,10 +36,10 @@ MediaAutomationHandler = function() {
chrome.automation.getDesktop(function(node) {
BaseAutomationHandler.call(this, node);
- this.addListener_(EventType.MEDIA_STARTED_PLAYING,
- this.onMediaStartedPlaying);
- this.addListener_(EventType.MEDIA_STOPPED_PLAYING,
- this.onMediaStoppedPlaying);
+ this.addListener_(
+ EventType.MEDIA_STARTED_PLAYING, this.onMediaStartedPlaying);
+ this.addListener_(
+ EventType.MEDIA_STOPPED_PLAYING, this.onMediaStoppedPlaying);
}.bind(this));
};

Powered by Google App Engine
This is Rietveld 408576698