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

Unified Diff: mojo/dart/packages/mojo_services/lib/mojo/url_loader_interceptor.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/mojo/url_loader_interceptor.mojom.dart
diff --git a/mojo/dart/packages/mojo_services/lib/mojo/url_loader_interceptor.mojom.dart b/mojo/dart/packages/mojo_services/lib/mojo/url_loader_interceptor.mojom.dart
index d78a30fc7e1d681ec05452e0eb653b7e17d63bfe..ea3129387dc46b31e551119378792bf70fb8223f 100644
--- a/mojo/dart/packages/mojo_services/lib/mojo/url_loader_interceptor.mojom.dart
+++ b/mojo/dart/packages/mojo_services/lib/mojo/url_loader_interceptor.mojom.dart
@@ -604,9 +604,9 @@ abstract class UrlLoaderInterceptorFactory {
void create(Object interceptor);
}
-
-class _UrlLoaderInterceptorFactoryProxyControl extends bindings.ProxyMessageHandler
- implements bindings.ProxyControl {
+class _UrlLoaderInterceptorFactoryProxyControl
+ extends bindings.ProxyMessageHandler
+ implements bindings.ProxyControl {
_UrlLoaderInterceptorFactoryProxyControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint) : super.fromEndpoint(endpoint);
@@ -620,7 +620,6 @@ class _UrlLoaderInterceptorFactoryProxyControl extends bindings.ProxyMessageHand
String get serviceName => UrlLoaderInterceptorFactory.serviceName;
- @override
void handleResponse(bindings.ServiceMessage message) {
switch (message.header.type) {
default:
@@ -637,9 +636,9 @@ class _UrlLoaderInterceptorFactoryProxyControl extends bindings.ProxyMessageHand
}
}
-
-class UrlLoaderInterceptorFactoryProxy extends bindings.Proxy
- implements UrlLoaderInterceptorFactory {
+class UrlLoaderInterceptorFactoryProxy
+ extends bindings.Proxy
+ implements UrlLoaderInterceptorFactory {
UrlLoaderInterceptorFactoryProxy.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint)
: super(new _UrlLoaderInterceptorFactoryProxyControl.fromEndpoint(endpoint));
@@ -676,29 +675,24 @@ class UrlLoaderInterceptorFactoryProxy extends bindings.Proxy
}
}
-
-class UrlLoaderInterceptorFactoryStub extends bindings.Stub {
+class _UrlLoaderInterceptorFactoryStubControl
+ extends bindings.StubMessageHandler
+ implements bindings.StubControl<UrlLoaderInterceptorFactory> {
UrlLoaderInterceptorFactory _impl;
- UrlLoaderInterceptorFactoryStub.fromEndpoint(
+ _UrlLoaderInterceptorFactoryStubControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint, [UrlLoaderInterceptorFactory impl])
: super.fromEndpoint(endpoint, autoBegin: impl != null) {
_impl = impl;
}
- UrlLoaderInterceptorFactoryStub.fromHandle(
+ _UrlLoaderInterceptorFactoryStubControl.fromHandle(
core.MojoHandle handle, [UrlLoaderInterceptorFactory impl])
: super.fromHandle(handle, autoBegin: impl != null) {
_impl = impl;
}
- UrlLoaderInterceptorFactoryStub.unbound([this._impl]) : super.unbound();
-
- static UrlLoaderInterceptorFactoryStub newFromEndpoint(
- core.MojoMessagePipeEndpoint endpoint) {
- assert(endpoint.setDescription("For UrlLoaderInterceptorFactoryStub"));
- return new UrlLoaderInterceptorFactoryStub.fromEndpoint(endpoint);
- }
+ _UrlLoaderInterceptorFactoryStubControl.unbound([this._impl]) : super.unbound();
@@ -743,9 +737,10 @@ class UrlLoaderInterceptorFactoryStub extends bindings.Stub {
}
}
+ @override
String toString() {
var superString = super.toString();
- return "UrlLoaderInterceptorFactoryStub($superString)";
+ return "_UrlLoaderInterceptorFactoryStubControl($superString)";
}
int get version => 0;
@@ -759,6 +754,35 @@ class UrlLoaderInterceptorFactoryStub extends bindings.Stub {
}
}
+class UrlLoaderInterceptorFactoryStub
+ extends bindings.Stub<UrlLoaderInterceptorFactory>
+ implements UrlLoaderInterceptorFactory {
+ UrlLoaderInterceptorFactoryStub.fromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint, [UrlLoaderInterceptorFactory impl])
+ : super(new _UrlLoaderInterceptorFactoryStubControl.fromEndpoint(endpoint, impl));
+
+ UrlLoaderInterceptorFactoryStub.fromHandle(
+ core.MojoHandle handle, [UrlLoaderInterceptorFactory impl])
+ : super(new _UrlLoaderInterceptorFactoryStubControl.fromHandle(handle, impl));
+
+ UrlLoaderInterceptorFactoryStub.unbound([UrlLoaderInterceptorFactory impl])
+ : super(new _UrlLoaderInterceptorFactoryStubControl.unbound(impl));
+
+ static UrlLoaderInterceptorFactoryStub newFromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint) {
+ assert(endpoint.setDescription("For UrlLoaderInterceptorFactoryStub"));
+ return new UrlLoaderInterceptorFactoryStub.fromEndpoint(endpoint);
+ }
+
+ static service_describer.ServiceDescription get serviceDescription =>
+ _UrlLoaderInterceptorFactoryStubControl.serviceDescription;
+
+
+ void create(Object interceptor) {
+ return impl.create(interceptor);
+ }
+}
+
const int _urlLoaderInterceptorMethodInterceptRequestName = 0;
const int _urlLoaderInterceptorMethodInterceptFollowRedirectName = 1;
const int _urlLoaderInterceptorMethodInterceptResponseName = 2;
@@ -781,9 +805,9 @@ abstract class UrlLoaderInterceptor {
dynamic interceptResponse(url_response_mojom.UrlResponse response,[Function responseFactory = null]);
}
-
-class _UrlLoaderInterceptorProxyControl extends bindings.ProxyMessageHandler
- implements bindings.ProxyControl {
+class _UrlLoaderInterceptorProxyControl
+ extends bindings.ProxyMessageHandler
+ implements bindings.ProxyControl {
_UrlLoaderInterceptorProxyControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint) : super.fromEndpoint(endpoint);
@@ -797,7 +821,6 @@ class _UrlLoaderInterceptorProxyControl extends bindings.ProxyMessageHandler
String get serviceName => UrlLoaderInterceptor.serviceName;
- @override
void handleResponse(bindings.ServiceMessage message) {
switch (message.header.type) {
case _urlLoaderInterceptorMethodInterceptRequestName:
@@ -874,9 +897,9 @@ class _UrlLoaderInterceptorProxyControl extends bindings.ProxyMessageHandler
}
}
-
-class UrlLoaderInterceptorProxy extends bindings.Proxy
- implements UrlLoaderInterceptor {
+class UrlLoaderInterceptorProxy
+ extends bindings.Proxy
+ implements UrlLoaderInterceptor {
UrlLoaderInterceptorProxy.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint)
: super(new _UrlLoaderInterceptorProxyControl.fromEndpoint(endpoint));
@@ -929,29 +952,24 @@ class UrlLoaderInterceptorProxy extends bindings.Proxy
}
}
-
-class UrlLoaderInterceptorStub extends bindings.Stub {
+class _UrlLoaderInterceptorStubControl
+ extends bindings.StubMessageHandler
+ implements bindings.StubControl<UrlLoaderInterceptor> {
UrlLoaderInterceptor _impl;
- UrlLoaderInterceptorStub.fromEndpoint(
+ _UrlLoaderInterceptorStubControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint, [UrlLoaderInterceptor impl])
: super.fromEndpoint(endpoint, autoBegin: impl != null) {
_impl = impl;
}
- UrlLoaderInterceptorStub.fromHandle(
+ _UrlLoaderInterceptorStubControl.fromHandle(
core.MojoHandle handle, [UrlLoaderInterceptor impl])
: super.fromHandle(handle, autoBegin: impl != null) {
_impl = impl;
}
- UrlLoaderInterceptorStub.unbound([this._impl]) : super.unbound();
-
- static UrlLoaderInterceptorStub newFromEndpoint(
- core.MojoMessagePipeEndpoint endpoint) {
- assert(endpoint.setDescription("For UrlLoaderInterceptorStub"));
- return new UrlLoaderInterceptorStub.fromEndpoint(endpoint);
- }
+ _UrlLoaderInterceptorStubControl.unbound([this._impl]) : super.unbound();
UrlLoaderInterceptorInterceptRequestResponseParams _urlLoaderInterceptorInterceptRequestResponseParamsFactory(UrlLoaderInterceptorResponse response) {
@@ -1070,9 +1088,10 @@ class UrlLoaderInterceptorStub extends bindings.Stub {
}
}
+ @override
String toString() {
var superString = super.toString();
- return "UrlLoaderInterceptorStub($superString)";
+ return "_UrlLoaderInterceptorStubControl($superString)";
}
int get version => 0;
@@ -1086,5 +1105,40 @@ class UrlLoaderInterceptorStub extends bindings.Stub {
}
}
+class UrlLoaderInterceptorStub
+ extends bindings.Stub<UrlLoaderInterceptor>
+ implements UrlLoaderInterceptor {
+ UrlLoaderInterceptorStub.fromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint, [UrlLoaderInterceptor impl])
+ : super(new _UrlLoaderInterceptorStubControl.fromEndpoint(endpoint, impl));
+
+ UrlLoaderInterceptorStub.fromHandle(
+ core.MojoHandle handle, [UrlLoaderInterceptor impl])
+ : super(new _UrlLoaderInterceptorStubControl.fromHandle(handle, impl));
+
+ UrlLoaderInterceptorStub.unbound([UrlLoaderInterceptor impl])
+ : super(new _UrlLoaderInterceptorStubControl.unbound(impl));
+
+ static UrlLoaderInterceptorStub newFromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint) {
+ assert(endpoint.setDescription("For UrlLoaderInterceptorStub"));
+ return new UrlLoaderInterceptorStub.fromEndpoint(endpoint);
+ }
+
+ static service_describer.ServiceDescription get serviceDescription =>
+ _UrlLoaderInterceptorStubControl.serviceDescription;
+
+
+ dynamic interceptRequest(url_request_mojom.UrlRequest request,[Function responseFactory = null]) {
+ return impl.interceptRequest(request,responseFactory);
+ }
+ dynamic interceptFollowRedirect([Function responseFactory = null]) {
+ return impl.interceptFollowRedirect(responseFactory);
+ }
+ dynamic interceptResponse(url_response_mojom.UrlResponse response,[Function responseFactory = null]) {
+ return impl.interceptResponse(response,responseFactory);
+ }
+}
+

Powered by Google App Engine
This is Rietveld 408576698