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

Unified Diff: mojo/dart/packages/mojo_services/lib/http_server/http_server_factory.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_services/lib/http_server/http_server_factory.mojom.dart
diff --git a/mojo/dart/packages/mojo_services/lib/http_server/http_server_factory.mojom.dart b/mojo/dart/packages/mojo_services/lib/http_server/http_server_factory.mojom.dart
index fd0b2d2f49d9c498bf60425f214f2a7a571dac2e..0c3f234817a7902fe669881f1d15fe2dd0f8a3ff 100644
--- a/mojo/dart/packages/mojo_services/lib/http_server/http_server_factory.mojom.dart
+++ b/mojo/dart/packages/mojo_services/lib/http_server/http_server_factory.mojom.dart
@@ -114,9 +114,9 @@ abstract class HttpServerFactory {
void createHttpServer(Object serverRequest, net_address_mojom.NetAddress localAddress);
}
-
-class _HttpServerFactoryProxyControl extends bindings.ProxyMessageHandler
- implements bindings.ProxyControl {
+class _HttpServerFactoryProxyControl
+ extends bindings.ProxyMessageHandler
+ implements bindings.ProxyControl {
_HttpServerFactoryProxyControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint) : super.fromEndpoint(endpoint);
@@ -130,7 +130,6 @@ class _HttpServerFactoryProxyControl extends bindings.ProxyMessageHandler
String get serviceName => HttpServerFactory.serviceName;
- @override
void handleResponse(bindings.ServiceMessage message) {
switch (message.header.type) {
default:
@@ -147,9 +146,9 @@ class _HttpServerFactoryProxyControl extends bindings.ProxyMessageHandler
}
}
-
-class HttpServerFactoryProxy extends bindings.Proxy
- implements HttpServerFactory {
+class HttpServerFactoryProxy
+ extends bindings.Proxy
+ implements HttpServerFactory {
HttpServerFactoryProxy.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint)
: super(new _HttpServerFactoryProxyControl.fromEndpoint(endpoint));
@@ -187,29 +186,24 @@ class HttpServerFactoryProxy extends bindings.Proxy
}
}
-
-class HttpServerFactoryStub extends bindings.Stub {
+class _HttpServerFactoryStubControl
+ extends bindings.StubMessageHandler
+ implements bindings.StubControl<HttpServerFactory> {
HttpServerFactory _impl;
- HttpServerFactoryStub.fromEndpoint(
+ _HttpServerFactoryStubControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint, [HttpServerFactory impl])
: super.fromEndpoint(endpoint, autoBegin: impl != null) {
_impl = impl;
}
- HttpServerFactoryStub.fromHandle(
+ _HttpServerFactoryStubControl.fromHandle(
core.MojoHandle handle, [HttpServerFactory impl])
: super.fromHandle(handle, autoBegin: impl != null) {
_impl = impl;
}
- HttpServerFactoryStub.unbound([this._impl]) : super.unbound();
-
- static HttpServerFactoryStub newFromEndpoint(
- core.MojoMessagePipeEndpoint endpoint) {
- assert(endpoint.setDescription("For HttpServerFactoryStub"));
- return new HttpServerFactoryStub.fromEndpoint(endpoint);
- }
+ _HttpServerFactoryStubControl.unbound([this._impl]) : super.unbound();
@@ -254,9 +248,10 @@ class HttpServerFactoryStub extends bindings.Stub {
}
}
+ @override
String toString() {
var superString = super.toString();
- return "HttpServerFactoryStub($superString)";
+ return "_HttpServerFactoryStubControl($superString)";
}
int get version => 0;
@@ -270,5 +265,34 @@ class HttpServerFactoryStub extends bindings.Stub {
}
}
+class HttpServerFactoryStub
+ extends bindings.Stub<HttpServerFactory>
+ implements HttpServerFactory {
+ HttpServerFactoryStub.fromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint, [HttpServerFactory impl])
+ : super(new _HttpServerFactoryStubControl.fromEndpoint(endpoint, impl));
+
+ HttpServerFactoryStub.fromHandle(
+ core.MojoHandle handle, [HttpServerFactory impl])
+ : super(new _HttpServerFactoryStubControl.fromHandle(handle, impl));
+
+ HttpServerFactoryStub.unbound([HttpServerFactory impl])
+ : super(new _HttpServerFactoryStubControl.unbound(impl));
+
+ static HttpServerFactoryStub newFromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint) {
+ assert(endpoint.setDescription("For HttpServerFactoryStub"));
+ return new HttpServerFactoryStub.fromEndpoint(endpoint);
+ }
+
+ static service_describer.ServiceDescription get serviceDescription =>
+ _HttpServerFactoryStubControl.serviceDescription;
+
+
+ void createHttpServer(Object serverRequest, net_address_mojom.NetAddress localAddress) {
+ return impl.createHttpServer(serverRequest, localAddress);
+ }
+}
+

Powered by Google App Engine
This is Rietveld 408576698