OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * @fileoverview A TTS engine that writes to window.console. | 6 * @fileoverview A TTS engine that writes to window.console. |
7 */ | 7 */ |
8 | 8 |
9 goog.provide('cvox.ConsoleTts'); | 9 goog.provide('cvox.ConsoleTts'); |
10 | 10 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 console.log('Stop'); | 55 console.log('Stop'); |
56 } | 56 } |
57 }; | 57 }; |
58 | 58 |
59 /** @override */ | 59 /** @override */ |
60 cvox.ConsoleTts.prototype.addCapturingEventListener = function(listener) { }; | 60 cvox.ConsoleTts.prototype.addCapturingEventListener = function(listener) { }; |
61 | 61 |
62 /** @override */ | 62 /** @override */ |
63 cvox.ConsoleTts.prototype.increaseOrDecreaseProperty = function() { }; | 63 cvox.ConsoleTts.prototype.increaseOrDecreaseProperty = function() { }; |
64 | 64 |
| 65 /** @override */ |
| 66 cvox.ConsoleTts.prototype.propertyToPercentage = function() { }; |
| 67 |
65 /** | 68 /** |
66 * Sets the enabled bit. | 69 * Sets the enabled bit. |
67 * @param {boolean} enabled The new enabled bit. | 70 * @param {boolean} enabled The new enabled bit. |
68 */ | 71 */ |
69 cvox.ConsoleTts.prototype.setEnabled = function(enabled) { | 72 cvox.ConsoleTts.prototype.setEnabled = function(enabled) { |
70 this.enabled_ = enabled; | 73 this.enabled_ = enabled; |
71 }; | 74 }; |
72 | 75 |
73 /** @override */ | 76 /** @override */ |
74 cvox.ConsoleTts.prototype.getDefaultProperty = function(property) { }; | 77 cvox.ConsoleTts.prototype.getDefaultProperty = function(property) { }; |
OLD | NEW |