Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 /** | |
| 6 * Class to handle changes to auto-scan. | |
| 7 * | |
| 8 * @constructor | |
| 9 * @param {SwitchAccessInterface} switchAccess | |
| 10 */ | |
| 11 let AutoScanManager = function(switchAccess) { | |
| 12 /** | |
| 13 * SwitchAccess reference. | |
| 14 * @private {SwitchAccessInterface} | |
| 15 */ | |
| 16 this.switchAccess_ = switchAccess; | |
| 17 | |
| 18 /** | |
| 19 * Auto-scan interval ID. | |
| 20 * | |
| 21 * @private {number} | |
| 22 */ | |
| 23 this.intervalID_ = 0; | |
| 24 | |
| 25 /** | |
| 26 * Length of auto-scan interval in seconds. | |
| 27 * | |
| 28 * @private {number} | |
| 29 */ | |
| 30 this.scanTime_ = | |
| 31 /** @type {number} */ (switchAccess.switchAccessPrefs | |
| 32 .getPref('autoScanTime')); | |
| 33 | |
| 34 let enabled = switchAccess.switchAccessPrefs.getPref('enableAutoScan'); | |
| 35 if (enabled) | |
| 36 this.start_(); | |
| 37 }; | |
| 38 | |
| 39 AutoScanManager.prototype = { | |
| 40 /** | |
| 41 * Stop the window from moving to the next node at a fixed interval. | |
| 42 * | |
| 43 * @private | |
| 44 */ | |
| 45 stop_: function() { | |
| 46 window.clearInterval(this.intervalID_); | |
| 47 this.intervalID_ = 0; | |
| 48 }, | |
| 49 | |
| 50 /** | |
| 51 * Set the window to move to the next node at an interval in seconds equal to | |
| 52 * this.scanTime_. | |
| 53 * | |
| 54 * @private | |
| 55 */ | |
| 56 start_: function() { | |
| 57 this.intervalID_ = window.setInterval( | |
| 58 this.switchAccess_.moveToNext.bind(this.switchAccess_), | |
| 59 this.scanTime_ * 1000); | |
| 60 }, | |
| 61 | |
| 62 /** | |
| 63 * Return true if auto-scan is currently running. Otherwise return false. | |
| 64 * | |
| 65 * @return {boolean} | |
| 66 */ | |
| 67 isRunning: function() { | |
| 68 return this.intervalID_ !== 0; | |
| 69 }, | |
| 70 | |
| 71 /** | |
| 72 * Restart auto-scan under the current settings. | |
| 73 */ | |
| 74 restart: function() { | |
| 75 this.stop_(); | |
| 76 this.start_(); | |
| 77 }, | |
| 78 | |
| 79 /** | |
| 80 * Stop auto-scan if it is currently running. Then, if |enabled| is true, | |
| 81 * turn on auto-scan. Otherwise leave it off. | |
| 82 * | |
| 83 * @param {boolean} enabled | |
| 84 */ | |
| 85 setEnabled: function(enabled) { | |
| 86 if (this.isRunning()) | |
| 87 this.stop_(); | |
| 88 if (enabled) | |
| 89 this.start_(); | |
| 90 }, | |
| 91 | |
| 92 /** | |
| 93 * Update this.scanTime_ to |scanTime|. Then, if auto-scan is currently | |
| 94 * running, restart it. | |
| 95 * | |
| 96 * @param {number} scanTime | |
|
dmazzoni
2017/03/29 05:52:20
Document "in seconds" here
elichtenberg
2017/03/29 19:15:11
Done.
| |
| 97 */ | |
| 98 setScanTime: function(scanTime) { | |
| 99 this.scanTime_ = scanTime; | |
| 100 if (this.isRunning()) { | |
| 101 this.restart(); | |
| 102 } | |
| 103 }, | |
| 104 }; | |
| OLD | NEW |