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

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

Issue 658393003: Fix some straight-forward closure compiler errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/base_session_manager.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 f99d284cadec1d14aa4de78dfff9ae43b608b778..b3c2266792dbb467f7b995b5112156416abc7508 100644
--- a/chrome/browser/resources/hotword/always_on_manager.js
+++ b/chrome/browser/resources/hotword/always_on_manager.js
@@ -12,7 +12,7 @@ cr.define('hotword', function() {
* @param {!hotword.StateManager} stateManager
* @constructor
* @extends {hotword.BaseSessionManager}
- * @struct
+ * @class
Dan Beam 2014/10/21 03:07:39 why both @class and @constructor?
Anand Mistry (off Chromium) 2014/10/21 03:42:21 Dunno. I was following some other code which did t
*/
function AlwaysOnManager(stateManager) {
hotword.BaseSessionManager.call(this,
@@ -23,12 +23,12 @@ cr.define('hotword', function() {
AlwaysOnManager.prototype = {
__proto__: hotword.BaseSessionManager.prototype,
- /** override */
+ /** @override */
enabled: function() {
return this.stateManager.isAlwaysOnEnabled();
},
- /** override */
+ /** @override */
updateListeners: function() {
hotword.BaseSessionManager.prototype.updateListeners.call(this);
if (this.enabled())
« no previous file with comments | « no previous file | chrome/browser/resources/hotword/base_session_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698