| 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())
|
|
|