OLD | NEW |
| 1 // Copyright (c) 2012 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 |
1 [ | 5 [ |
2 { | 6 { |
3 "namespace": "ttsEngine", | 7 "namespace": "ttsEngine", |
4 "dependencies": [ "tts" ], | 8 "dependencies": [ "tts" ], |
5 "functions": [ | 9 "functions": [ |
6 { | 10 { |
7 "name": "sendTtsEvent", | 11 "name": "sendTtsEvent", |
8 "nodoc": true, | 12 "nodoc": true, |
9 "type": "function", | 13 "type": "function", |
10 "description": "Routes a TTS event from a speech engine to a client.", | 14 "description": "Routes a TTS event from a speech engine to a client.", |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 ] | 95 ] |
92 }, | 96 }, |
93 { | 97 { |
94 "name": "onStop", | 98 "name": "onStop", |
95 "type": "function", | 99 "type": "function", |
96 "description": "Fired when a call is made to tts.stop and this extension
may be in the middle of speaking. If an extension receives a call to onStop and
speech is already stopped, it should do nothing (not raise an error)." | 100 "description": "Fired when a call is made to tts.stop and this extension
may be in the middle of speaking. If an extension receives a call to onStop and
speech is already stopped, it should do nothing (not raise an error)." |
97 } | 101 } |
98 ] | 102 ] |
99 } | 103 } |
100 ] | 104 ] |
OLD | NEW |