1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
ash / components / arc / mojom / tts.mojom [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Next MinVersion: 5
module arc.mojom;
[Extensible]
enum TtsEventType {
START = 0,
END,
INTERRUPTED,
ERROR,
WORD
};
// Represents a tts utterance sent from Chrome to Android.
struct TtsUtterance {
uint32 utteranceId;
string text;
double rate;
double pitch;
[MinVersion=2] uint32 voice_id;
};
// Represents a tts voice sent from Android to Chrome.
struct TtsVoice {
uint32 id;
string name;
string locale;
bool is_network_connection_required;
};
// Deprecated method IDs: 0
// Next Method ID: 3
interface TtsHost {
// Notifies Chrome of Android tts voices.
[MinVersion=2] OnVoicesChanged@1(array<TtsVoice> voices);
// Notifies Chrome of Android tts events.
[MinVersion=3] OnTtsEvent@2(uint32 utteranceId,
TtsEventType event_type,
uint32 char_index,
uint32 length,
string error_msg);
};
// Deprecated method IDs: 0
// Next Method ID: 4
interface TtsInstance {
// Establishes full-duplex communication with the host.
[MinVersion=1] Init@3(pending_remote<TtsHost> host_remote) => ();
// Sends an utterance to Android for synthesis.
Speak@1(TtsUtterance utterance);
// Sends a stop request to Android text to speech.
Stop@2();
// Request to call OnVoicesChanged if necessary.
[MinVersion=4] RefreshVoices@4();
};