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

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

Issue 1998433002: Dart: Adds Interface and InterfaceRequest interfaces. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Merge Created 4 years, 7 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/mojo/timelines.mojom.dart
diff --git a/mojo/dart/packages/mojo_services/lib/mojo/timelines.mojom.dart b/mojo/dart/packages/mojo_services/lib/mojo/timelines.mojom.dart
index d898a065ab2b332226061cdb3e43c07153b39536..639bb642723f390c0e87530853eca96ed14eb9f3 100644
--- a/mojo/dart/packages/mojo_services/lib/mojo/timelines.mojom.dart
+++ b/mojo/dart/packages/mojo_services/lib/mojo/timelines.mojom.dart
@@ -338,13 +338,51 @@ class _TimelineConsumerServiceDescription implements service_describer.ServiceDe
abstract class TimelineConsumer {
static const String serviceName = null;
+
+ static service_describer.ServiceDescription _cachedServiceDescription;
+ static service_describer.ServiceDescription get serviceDescription {
+ if (_cachedServiceDescription == null) {
+ _cachedServiceDescription = new _TimelineConsumerServiceDescription();
+ }
+ return _cachedServiceDescription;
+ }
+
+ static TimelineConsumerProxy connectToService(
+ bindings.ServiceConnector s, String url, [String serviceName]) {
+ TimelineConsumerProxy p = new TimelineConsumerProxy.unbound();
+ String name = serviceName ?? TimelineConsumer.serviceName;
+ if ((name == null) || name.isEmpty) {
+ throw new core.MojoApiError(
+ "If an interface has no ServiceName, then one must be provided.");
+ }
+ s.connectToService(url, p, name);
+ return p;
+ }
dynamic setTimelineTransform(int subjectTime,int referenceDelta,int subjectDelta,int effectiveReferenceTime,int effectiveSubjectTime,[Function responseFactory = null]);
static const int kUnspecifiedTime = 9223372036854775807;
}
+abstract class TimelineConsumerInterface
+ implements bindings.MojoInterface<TimelineConsumer>,
+ TimelineConsumer {
+ factory TimelineConsumerInterface([TimelineConsumer impl]) =>
+ new TimelineConsumerStub.unbound(impl);
+ factory TimelineConsumerInterface.fromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint,
+ [TimelineConsumer impl]) =>
+ new TimelineConsumerStub.fromEndpoint(endpoint, impl);
+}
+
+abstract class TimelineConsumerInterfaceRequest
+ implements bindings.MojoInterface<TimelineConsumer>,
+ TimelineConsumer {
+ factory TimelineConsumerInterfaceRequest() =>
+ new TimelineConsumerProxy.unbound();
+}
+
class _TimelineConsumerProxyControl
extends bindings.ProxyMessageHandler
- implements bindings.ProxyControl {
+ implements bindings.ProxyControl<TimelineConsumer> {
_TimelineConsumerProxyControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint) : super.fromEndpoint(endpoint);
@@ -353,9 +391,6 @@ class _TimelineConsumerProxyControl
_TimelineConsumerProxyControl.unbound() : super.unbound();
- service_describer.ServiceDescription get serviceDescription =>
- new _TimelineConsumerServiceDescription();
-
String get serviceName => TimelineConsumer.serviceName;
void handleResponse(bindings.ServiceMessage message) {
@@ -387,6 +422,11 @@ class _TimelineConsumerProxyControl
}
}
+ TimelineConsumer get impl => null;
+ set impl(TimelineConsumer _) {
+ throw new core.MojoApiError("The impl of a Proxy cannot be set.");
+ }
+
@override
String toString() {
var superString = super.toString();
@@ -395,8 +435,10 @@ class _TimelineConsumerProxyControl
}
class TimelineConsumerProxy
- extends bindings.Proxy
- implements TimelineConsumer {
+ extends bindings.Proxy<TimelineConsumer>
+ implements TimelineConsumer,
+ TimelineConsumerInterface,
+ TimelineConsumerInterfaceRequest {
TimelineConsumerProxy.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint)
: super(new _TimelineConsumerProxyControl.fromEndpoint(endpoint));
@@ -413,13 +455,6 @@ class TimelineConsumerProxy
return new TimelineConsumerProxy.fromEndpoint(endpoint);
}
- factory TimelineConsumerProxy.connectToService(
- bindings.ServiceConnector s, String url, [String serviceName]) {
- TimelineConsumerProxy p = new TimelineConsumerProxy.unbound();
- s.connectToService(url, p, serviceName);
- return p;
- }
-
dynamic setTimelineTransform(int subjectTime,int referenceDelta,int subjectDelta,int effectiveReferenceTime,int effectiveSubjectTime,[Function responseFactory = null]) {
var params = new _TimelineConsumerSetTimelineTransformParams();
@@ -455,6 +490,8 @@ class _TimelineConsumerStubControl
_TimelineConsumerStubControl.unbound([this._impl]) : super.unbound();
+ String get serviceName => TimelineConsumer.serviceName;
+
TimelineConsumerSetTimelineTransformResponseParams _timelineConsumerSetTimelineTransformResponseParamsFactory(bool completed) {
var result = new TimelineConsumerSetTimelineTransformResponseParams();
@@ -527,19 +564,16 @@ class _TimelineConsumerStubControl
}
int get version => 0;
-
- static service_describer.ServiceDescription _cachedServiceDescription;
- static service_describer.ServiceDescription get serviceDescription {
- if (_cachedServiceDescription == null) {
- _cachedServiceDescription = new _TimelineConsumerServiceDescription();
- }
- return _cachedServiceDescription;
- }
}
class TimelineConsumerStub
extends bindings.Stub<TimelineConsumer>
- implements TimelineConsumer {
+ implements TimelineConsumer,
+ TimelineConsumerInterface,
+ TimelineConsumerInterfaceRequest {
+ TimelineConsumerStub.unbound([TimelineConsumer impl])
+ : super(new _TimelineConsumerStubControl.unbound(impl));
+
TimelineConsumerStub.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint, [TimelineConsumer impl])
: super(new _TimelineConsumerStubControl.fromEndpoint(endpoint, impl));
@@ -548,18 +582,12 @@ class TimelineConsumerStub
core.MojoHandle handle, [TimelineConsumer impl])
: super(new _TimelineConsumerStubControl.fromHandle(handle, impl));
- TimelineConsumerStub.unbound([TimelineConsumer impl])
- : super(new _TimelineConsumerStubControl.unbound(impl));
-
static TimelineConsumerStub newFromEndpoint(
core.MojoMessagePipeEndpoint endpoint) {
assert(endpoint.setDescription("For TimelineConsumerStub"));
return new TimelineConsumerStub.fromEndpoint(endpoint);
}
- static service_describer.ServiceDescription get serviceDescription =>
- _TimelineConsumerStubControl.serviceDescription;
-
dynamic setTimelineTransform(int subjectTime,int referenceDelta,int subjectDelta,int effectiveReferenceTime,int effectiveSubjectTime,[Function responseFactory = null]) {
return impl.setTimelineTransform(subjectTime,referenceDelta,subjectDelta,effectiveReferenceTime,effectiveSubjectTime,responseFactory);

Powered by Google App Engine
This is Rietveld 408576698