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

Unified Diff: mojo/dart/packages/mojo_services/lib/prediction/prediction.mojom.dart

Issue 1539673003: Generate Mojom Types in Dart (Take 2) (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Merge with master Created 4 years, 11 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/dart/packages/mojo_services/lib/prediction/prediction.mojom.dart
diff --git a/mojo/dart/packages/mojo_services/lib/prediction/prediction.mojom.dart b/mojo/dart/packages/mojo_services/lib/prediction/prediction.mojom.dart
index 96e0938de1de3f54782327c90e4a634043485072..2a4fc9667d2ad4cbc44ef6e3406458b814e0ed11 100644
--- a/mojo/dart/packages/mojo_services/lib/prediction/prediction.mojom.dart
+++ b/mojo/dart/packages/mojo_services/lib/prediction/prediction.mojom.dart
@@ -8,6 +8,8 @@ import 'dart:async';
import 'package:mojo/bindings.dart' as bindings;
import 'package:mojo/core.dart' as core;
+import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types;
+import 'package:mojo/mojo/bindings/types/service_describer.mojom.dart' as service_describer;
@@ -87,6 +89,8 @@ class PrevWordInfo extends bindings.Struct {
}
+
+
class PredictionInfo extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(24, 0)
@@ -180,6 +184,8 @@ class PredictionInfo extends bindings.Struct {
}
+
+
class _PredictionServiceGetPredictionListParams extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(16, 0)
@@ -248,6 +254,8 @@ class _PredictionServiceGetPredictionListParams extends bindings.Struct {
}
+
+
class PredictionServiceGetPredictionListResponseParams extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(16, 0)
@@ -332,8 +340,21 @@ class PredictionServiceGetPredictionListResponseParams extends bindings.Struct {
}
}
+
+
+
const int _PredictionService_getPredictionListName = 0;
+
+
+class _PredictionServiceServiceDescription implements service_describer.ServiceDescription {
+ dynamic getTopLevelInterface([Function responseFactory]) => null;
+
+ dynamic getTypeDefinition(String typeKey, [Function responseFactory]) => null;
+
+ dynamic getAllTypeDefinitions([Function responseFactory]) => null;
+}
+
abstract class PredictionService {
static const String serviceName = "prediction::PredictionService";
dynamic getPredictionList(PredictionInfo predictionInfo,[Function responseFactory = null]);
@@ -355,6 +376,9 @@ class _PredictionServiceProxyImpl extends bindings.Proxy {
return new _PredictionServiceProxyImpl.fromEndpoint(endpoint);
}
+ service_describer.ServiceDescription get serviceDescription =>
+ new _PredictionServiceServiceDescription();
+
void handleResponse(bindings.ServiceMessage message) {
switch (message.header.type) {
case _PredictionService_getPredictionListName:
@@ -540,6 +564,10 @@ class PredictionServiceStub extends bindings.Stub {
}
int get version => 0;
+
+ service_describer.ServiceDescription get serviceDescription =>
+ new _PredictionServiceServiceDescription();
}
+

Powered by Google App Engine
This is Rietveld 408576698