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

Unified Diff: mojo/dart/packages/_mojo_for_test_only/lib/mojo/test/test_structs.mojom.dart

Issue 1983453002: Dart: Refactor Stubs (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_for_test_only/lib/mojo/test/test_structs.mojom.dart
diff --git a/mojo/dart/packages/_mojo_for_test_only/lib/mojo/test/test_structs.mojom.dart b/mojo/dart/packages/_mojo_for_test_only/lib/mojo/test/test_structs.mojom.dart
index e278849fd4779280a25abfaf0d8a13eb097f392a..72b3d85e970e2180abd99ce6d8780ddf3836e22d 100644
--- a/mojo/dart/packages/_mojo_for_test_only/lib/mojo/test/test_structs.mojom.dart
+++ b/mojo/dart/packages/_mojo_for_test_only/lib/mojo/test/test_structs.mojom.dart
@@ -6007,9 +6007,9 @@ abstract class SomeInterface {
dynamic someMethod(RectPair pair,[Function responseFactory = null]);
}
-
-class _SomeInterfaceProxyControl extends bindings.ProxyMessageHandler
- implements bindings.ProxyControl {
+class _SomeInterfaceProxyControl
+ extends bindings.ProxyMessageHandler
+ implements bindings.ProxyControl {
_SomeInterfaceProxyControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint) : super.fromEndpoint(endpoint);
@@ -6023,7 +6023,6 @@ class _SomeInterfaceProxyControl extends bindings.ProxyMessageHandler
String get serviceName => SomeInterface.serviceName;
- @override
void handleResponse(bindings.ServiceMessage message) {
switch (message.header.type) {
case _someInterfaceMethodSomeMethodName:
@@ -6060,9 +6059,9 @@ class _SomeInterfaceProxyControl extends bindings.ProxyMessageHandler
}
}
-
-class SomeInterfaceProxy extends bindings.Proxy
- implements SomeInterface {
+class SomeInterfaceProxy
+ extends bindings.Proxy
+ implements SomeInterface {
SomeInterfaceProxy.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint)
: super(new _SomeInterfaceProxyControl.fromEndpoint(endpoint));
@@ -6098,29 +6097,24 @@ class SomeInterfaceProxy extends bindings.Proxy
}
}
-
-class SomeInterfaceStub extends bindings.Stub {
+class _SomeInterfaceStubControl
+ extends bindings.StubMessageHandler
+ implements bindings.StubControl<SomeInterface> {
SomeInterface _impl;
- SomeInterfaceStub.fromEndpoint(
+ _SomeInterfaceStubControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint, [SomeInterface impl])
: super.fromEndpoint(endpoint, autoBegin: impl != null) {
_impl = impl;
}
- SomeInterfaceStub.fromHandle(
+ _SomeInterfaceStubControl.fromHandle(
core.MojoHandle handle, [SomeInterface impl])
: super.fromHandle(handle, autoBegin: impl != null) {
_impl = impl;
}
- SomeInterfaceStub.unbound([this._impl]) : super.unbound();
-
- static SomeInterfaceStub newFromEndpoint(
- core.MojoMessagePipeEndpoint endpoint) {
- assert(endpoint.setDescription("For SomeInterfaceStub"));
- return new SomeInterfaceStub.fromEndpoint(endpoint);
- }
+ _SomeInterfaceStubControl.unbound([this._impl]) : super.unbound();
SomeInterfaceSomeMethodResponseParams _someInterfaceSomeMethodResponseParamsFactory(RectPair otherPair) {
@@ -6187,9 +6181,10 @@ class SomeInterfaceStub extends bindings.Stub {
}
}
+ @override
String toString() {
var superString = super.toString();
- return "SomeInterfaceStub($superString)";
+ return "_SomeInterfaceStubControl($superString)";
}
int get version => 0;
@@ -6203,6 +6198,35 @@ class SomeInterfaceStub extends bindings.Stub {
}
}
+class SomeInterfaceStub
+ extends bindings.Stub<SomeInterface>
+ implements SomeInterface {
+ SomeInterfaceStub.fromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint, [SomeInterface impl])
+ : super(new _SomeInterfaceStubControl.fromEndpoint(endpoint, impl));
+
+ SomeInterfaceStub.fromHandle(
+ core.MojoHandle handle, [SomeInterface impl])
+ : super(new _SomeInterfaceStubControl.fromHandle(handle, impl));
+
+ SomeInterfaceStub.unbound([SomeInterface impl])
+ : super(new _SomeInterfaceStubControl.unbound(impl));
+
+ static SomeInterfaceStub newFromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint) {
+ assert(endpoint.setDescription("For SomeInterfaceStub"));
+ return new SomeInterfaceStub.fromEndpoint(endpoint);
+ }
+
+ static service_describer.ServiceDescription get serviceDescription =>
+ _SomeInterfaceStubControl.serviceDescription;
+
+
+ dynamic someMethod(RectPair pair,[Function responseFactory = null]) {
+ return impl.someMethod(pair,responseFactory);
+ }
+}
+
mojom_types.RuntimeTypeInfo getRuntimeTypeInfo() => _runtimeTypeInfo ??
_initRuntimeTypeInfo();

Powered by Google App Engine
This is Rietveld 408576698