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

Unified Diff: mojo/services/prediction/interfaces/prediction.mojom

Issue 1741963002: Auto-formatted all .mojom files. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698