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

Unified Diff: mojo/dart/packages/mojo/lib/mojo/application_connector.mojom.dart

Issue 2006093002: Dart: Futures -> Callbacks. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Merge Created 4 years, 6 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/lib/mojo/application_connector.mojom.dart
diff --git a/mojo/dart/packages/mojo/lib/mojo/application_connector.mojom.dart b/mojo/dart/packages/mojo/lib/mojo/application_connector.mojom.dart
index 68ad9cad27f4988f686b9e197648b0bf5e7e45ad..d19ab37885448dcb6b185b5ed0afa182b29a0969 100644
--- a/mojo/dart/packages/mojo/lib/mojo/application_connector.mojom.dart
+++ b/mojo/dart/packages/mojo/lib/mojo/application_connector.mojom.dart
@@ -19,6 +19,11 @@ class _ApplicationConnectorConnectToApplicationParams extends bindings.Struct {
_ApplicationConnectorConnectToApplicationParams() : super(kVersions.last.size);
+ _ApplicationConnectorConnectToApplicationParams.init(
+ String this.applicationUrl,
+ service_provider_mojom.ServiceProviderInterfaceRequest this.services
+ ) : super(kVersions.last.size);
+
static _ApplicationConnectorConnectToApplicationParams deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
@@ -102,6 +107,10 @@ class _ApplicationConnectorDuplicateParams extends bindings.Struct {
_ApplicationConnectorDuplicateParams() : super(kVersions.last.size);
+ _ApplicationConnectorDuplicateParams.init(
+ ApplicationConnectorInterfaceRequest this.applicationConnectorRequest
+ ) : super(kVersions.last.size);
+
static _ApplicationConnectorDuplicateParams deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
@@ -168,14 +177,17 @@ const int _applicationConnectorMethodConnectToApplicationName = 0;
const int _applicationConnectorMethodDuplicateName = 1;
class _ApplicationConnectorServiceDescription implements service_describer.ServiceDescription {
- dynamic getTopLevelInterface([Function responseFactory]) =>
- responseFactory(null);
+ void getTopLevelInterface(Function responder) {
+ responder(null);
+ }
- dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
- responseFactory(null);
+ void getTypeDefinition(String typeKey, Function responder) {
+ responder(null);
+ }
- dynamic getAllTypeDefinitions([Function responseFactory]) =>
- responseFactory(null);
+ void getAllTypeDefinitions(Function responder) {
+ responder(null);
+ }
}
abstract class ApplicationConnector {
@@ -341,11 +353,11 @@ class _ApplicationConnectorStubControl
- dynamic handleMessage(bindings.ServiceMessage message) {
+ void handleMessage(bindings.ServiceMessage message) {
if (bindings.ControlMessageHandler.isControlMessage(message)) {
- return bindings.ControlMessageHandler.handleMessage(this,
- 0,
- message);
+ bindings.ControlMessageHandler.handleMessage(
+ this, 0, message);
+ return;
}
if (_impl == null) {
throw new core.MojoApiError("$this has no implementation set");
@@ -365,7 +377,6 @@ class _ApplicationConnectorStubControl
throw new bindings.MojoCodecError("Unexpected message name");
break;
}
- return null;
}
ApplicationConnector get impl => _impl;

Powered by Google App Engine
This is Rietveld 408576698