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

Unified Diff: mojo/dart/packages/mojo_services/lib/sensors/sensors.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_services/lib/sensors/sensors.mojom.dart
diff --git a/mojo/dart/packages/mojo_services/lib/sensors/sensors.mojom.dart b/mojo/dart/packages/mojo_services/lib/sensors/sensors.mojom.dart
index 6e5d3e8f996afa58c77a30066d7a54cf471abdbb..c81fed2c00c68bfa1574b7a3bb1c97d04088eee3 100644
--- a/mojo/dart/packages/mojo_services/lib/sensors/sensors.mojom.dart
+++ b/mojo/dart/packages/mojo_services/lib/sensors/sensors.mojom.dart
@@ -190,6 +190,12 @@ class SensorData extends bindings.Struct {
SensorData() : super(kVersions.last.size);
+ SensorData.init(
+ int this.accuracy,
+ int this.timeStamp,
+ List<double> this.values
+ ) : super(kVersions.last.size);
+
static SensorData deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
@@ -288,6 +294,10 @@ class _SensorListenerOnAccuracyChangedParams extends bindings.Struct {
_SensorListenerOnAccuracyChangedParams() : super(kVersions.last.size);
+ _SensorListenerOnAccuracyChangedParams.init(
+ int this.accuracy
+ ) : super(kVersions.last.size);
+
static _SensorListenerOnAccuracyChangedParams deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
@@ -360,6 +370,10 @@ class _SensorListenerOnSensorChangedParams extends bindings.Struct {
_SensorListenerOnSensorChangedParams() : super(kVersions.last.size);
+ _SensorListenerOnSensorChangedParams.init(
+ SensorData this.data
+ ) : super(kVersions.last.size);
+
static _SensorListenerOnSensorChangedParams deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
@@ -434,6 +448,11 @@ class _SensorServiceAddListenerParams extends bindings.Struct {
_SensorServiceAddListenerParams() : super(kVersions.last.size);
+ _SensorServiceAddListenerParams.init(
+ SensorType this.type,
+ SensorListenerInterface this.listener
+ ) : super(kVersions.last.size);
+
static _SensorServiceAddListenerParams deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
@@ -516,14 +535,17 @@ const int _sensorListenerMethodOnAccuracyChangedName = 0;
const int _sensorListenerMethodOnSensorChangedName = 1;
class _SensorListenerServiceDescription 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 SensorListener {
@@ -688,11 +710,11 @@ class _SensorListenerStubControl
- 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");
@@ -712,7 +734,6 @@ class _SensorListenerStubControl
throw new bindings.MojoCodecError("Unexpected message name");
break;
}
- return null;
}
SensorListener get impl => _impl;
@@ -777,14 +798,17 @@ class SensorListenerStub
const int _sensorServiceMethodAddListenerName = 0;
class _SensorServiceServiceDescription 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 SensorService {
@@ -935,11 +959,11 @@ class _SensorServiceStubControl
- 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");
@@ -954,7 +978,6 @@ class _SensorServiceStubControl
throw new bindings.MojoCodecError("Unexpected message name");
break;
}
- return null;
}
SensorService get impl => _impl;

Powered by Google App Engine
This is Rietveld 408576698