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

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: Remove the @class annotation. 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..c656c9ce86c2e003b2ac60d8c9da6bd0c54a71dc 100644
--- a/chrome/browser/resources/hotword/always_on_manager.js
+++ b/chrome/browser/resources/hotword/always_on_manager.js
@@ -12,7 +12,6 @@ cr.define('hotword', function() {
* @param {!hotword.StateManager} stateManager
* @constructor
* @extends {hotword.BaseSessionManager}
- * @struct
*/
function AlwaysOnManager(stateManager) {
hotword.BaseSessionManager.call(this,
@@ -23,12 +22,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