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

Unified Diff: mojo/dart/packages/mojo_services/lib/mojo/service_registry.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/service_registry.mojom.dart
diff --git a/mojo/dart/packages/mojo_services/lib/mojo/service_registry.mojom.dart b/mojo/dart/packages/mojo_services/lib/mojo/service_registry.mojom.dart
index eb9cb911f186577b333158e9f93b8acc587afd21..09df95255b25e8a2fa6127b802a90fcd68b5e5a5 100644
--- a/mojo/dart/packages/mojo_services/lib/mojo/service_registry.mojom.dart
+++ b/mojo/dart/packages/mojo_services/lib/mojo/service_registry.mojom.dart
@@ -127,9 +127,9 @@ abstract class ServiceRegistry {
void addServices(List<String> interfaceNames, Object serviceProvider);
}
-
-class _ServiceRegistryProxyControl extends bindings.ProxyMessageHandler
- implements bindings.ProxyControl {
+class _ServiceRegistryProxyControl
+ extends bindings.ProxyMessageHandler
+ implements bindings.ProxyControl {
_ServiceRegistryProxyControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint) : super.fromEndpoint(endpoint);
@@ -143,7 +143,6 @@ class _ServiceRegistryProxyControl extends bindings.ProxyMessageHandler
String get serviceName => ServiceRegistry.serviceName;
- @override
void handleResponse(bindings.ServiceMessage message) {
switch (message.header.type) {
default:
@@ -160,9 +159,9 @@ class _ServiceRegistryProxyControl extends bindings.ProxyMessageHandler
}
}
-
-class ServiceRegistryProxy extends bindings.Proxy
- implements ServiceRegistry {
+class ServiceRegistryProxy
+ extends bindings.Proxy
+ implements ServiceRegistry {
ServiceRegistryProxy.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint)
: super(new _ServiceRegistryProxyControl.fromEndpoint(endpoint));
@@ -200,29 +199,24 @@ class ServiceRegistryProxy extends bindings.Proxy
}
}
-
-class ServiceRegistryStub extends bindings.Stub {
+class _ServiceRegistryStubControl
+ extends bindings.StubMessageHandler
+ implements bindings.StubControl<ServiceRegistry> {
ServiceRegistry _impl;
- ServiceRegistryStub.fromEndpoint(
+ _ServiceRegistryStubControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint, [ServiceRegistry impl])
: super.fromEndpoint(endpoint, autoBegin: impl != null) {
_impl = impl;
}
- ServiceRegistryStub.fromHandle(
+ _ServiceRegistryStubControl.fromHandle(
core.MojoHandle handle, [ServiceRegistry impl])
: super.fromHandle(handle, autoBegin: impl != null) {
_impl = impl;
}
- ServiceRegistryStub.unbound([this._impl]) : super.unbound();
-
- static ServiceRegistryStub newFromEndpoint(
- core.MojoMessagePipeEndpoint endpoint) {
- assert(endpoint.setDescription("For ServiceRegistryStub"));
- return new ServiceRegistryStub.fromEndpoint(endpoint);
- }
+ _ServiceRegistryStubControl.unbound([this._impl]) : super.unbound();
@@ -267,9 +261,10 @@ class ServiceRegistryStub extends bindings.Stub {
}
}
+ @override
String toString() {
var superString = super.toString();
- return "ServiceRegistryStub($superString)";
+ return "_ServiceRegistryStubControl($superString)";
}
int get version => 0;
@@ -283,5 +278,34 @@ class ServiceRegistryStub extends bindings.Stub {
}
}
+class ServiceRegistryStub
+ extends bindings.Stub<ServiceRegistry>
+ implements ServiceRegistry {
+ ServiceRegistryStub.fromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint, [ServiceRegistry impl])
+ : super(new _ServiceRegistryStubControl.fromEndpoint(endpoint, impl));
+
+ ServiceRegistryStub.fromHandle(
+ core.MojoHandle handle, [ServiceRegistry impl])
+ : super(new _ServiceRegistryStubControl.fromHandle(handle, impl));
+
+ ServiceRegistryStub.unbound([ServiceRegistry impl])
+ : super(new _ServiceRegistryStubControl.unbound(impl));
+
+ static ServiceRegistryStub newFromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint) {
+ assert(endpoint.setDescription("For ServiceRegistryStub"));
+ return new ServiceRegistryStub.fromEndpoint(endpoint);
+ }
+
+ static service_describer.ServiceDescription get serviceDescription =>
+ _ServiceRegistryStubControl.serviceDescription;
+
+
+ void addServices(List<String> interfaceNames, Object serviceProvider) {
+ return impl.addServices(interfaceNames, serviceProvider);
+ }
+}
+

Powered by Google App Engine
This is Rietveld 408576698