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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/console_tts.js

Issue 1696443002: Re-land: Implement ChromeVox Next menus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 unified diff | Download patch
OLDNEW
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
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) { };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698