| Index: mojo/services/prediction/interfaces/prediction.mojom
|
| diff --git a/mojo/services/prediction/interfaces/prediction.mojom b/mojo/services/prediction/interfaces/prediction.mojom
|
| index 627a7408d4c09e59f75330f638f762b1d1408ee3..a1a829171fbebe4261d73b4fec9d7dc3fce515dd 100644
|
| --- a/mojo/services/prediction/interfaces/prediction.mojom
|
| +++ b/mojo/services/prediction/interfaces/prediction.mojom
|
| @@ -6,16 +6,17 @@
|
| module prediction;
|
|
|
| struct PrevWordInfo {
|
| - string word;
|
| - bool is_beginning_of_sentence;
|
| + string word;
|
| + bool is_beginning_of_sentence;
|
| };
|
|
|
| struct PredictionInfo {
|
| - array<PrevWordInfo> previous_words;
|
| - string current_word;
|
| + array<PrevWordInfo> previous_words;
|
| + string current_word;
|
| };
|
|
|
| [ServiceName="prediction::PredictionService"]
|
| interface PredictionService {
|
| - GetPredictionList(PredictionInfo prediction_info) => (array<string>? prediction_list);
|
| + GetPredictionList(PredictionInfo prediction_info)
|
| + => (array<string>? prediction_list);
|
| };
|
|
|