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

Unified Diff: chrome/browser/resources/hotword/always_on_manager.js

Issue 2599923002: Run tools/clang-format-js on chrome/browser/resources/hotword/ (Closed)
Patch Set: no dep Created 3 years, 12 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
« no previous file with comments | « no previous file | chrome/browser/resources/hotword/audio_client.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/hotword/always_on_manager.js
diff --git a/chrome/browser/resources/hotword/always_on_manager.js b/chrome/browser/resources/hotword/always_on_manager.js
index 042a8d2d7e1a095c0486c95dfec7d935e0799325..f34bc6da3709a675fe0103d66572088a108b9fe4 100644
--- a/chrome/browser/resources/hotword/always_on_manager.js
+++ b/chrome/browser/resources/hotword/always_on_manager.js
@@ -14,18 +14,17 @@ cr.define('hotword', function() {
* @extends {hotword.BaseSessionManager}
*/
function AlwaysOnManager(stateManager) {
- hotword.BaseSessionManager.call(this,
- stateManager,
- hotword.constants.SessionSource.ALWAYS);
+ hotword.BaseSessionManager.call(
+ this, stateManager, hotword.constants.SessionSource.ALWAYS);
}
AlwaysOnManager.prototype = {
__proto__: hotword.BaseSessionManager.prototype,
/** @override */
- enabled: function() {
- return this.stateManager.isAlwaysOnEnabled();
- },
+ enabled: function() {
+ return this.stateManager.isAlwaysOnEnabled();
+ },
/** @override */
updateListeners: function() {
@@ -35,7 +34,5 @@ cr.define('hotword', function() {
}
};
- return {
- AlwaysOnManager: AlwaysOnManager
- };
+ return {AlwaysOnManager: AlwaysOnManager};
});
« no previous file with comments | « no previous file | chrome/browser/resources/hotword/audio_client.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698