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

Unified Diff: services/dart/test/pingpong_target/main.dart

Issue 959993002: Dart: Removes name conflicts from generated bindings. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Removes unused constructors Created 5 years, 10 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: services/dart/test/pingpong_target/main.dart
diff --git a/services/dart/test/pingpong_target/main.dart b/services/dart/test/pingpong_target/main.dart
index b6dc4e3394f533b4eb4346c8b6fe838489767946..5500322d69dab55ef456eeb011f1a7f801a38c12 100644
--- a/services/dart/test/pingpong_target/main.dart
+++ b/services/dart/test/pingpong_target/main.dart
@@ -9,27 +9,31 @@ import 'mojo:core';
import 'package:services/dart/test/pingpong_service.mojom.dart';
-class PingPongServiceImpl extends PingPongService {
+class PingPongServiceImpl implements PingPongService {
+ PingPongServiceStub _stub;
Application _application;
- PingPongClientProxy _proxy;
+ PingPongClientProxy _pingPongClient;
PingPongServiceImpl(Application application, MojoMessagePipeEndpoint endpoint)
- : _application = application, super(endpoint) {
- super.delegate = this;
+ : _application = application {
+ _stub = new PingPongServiceStub.fromEndpoint(endpoint)
sky 2015/02/27 17:00:22 In looking at implementing this in the modular sid
sky 2015/02/27 17:02:06 One more suggestion: new PingPongServiceBinding(e
+ ..delegate = this
+ ..listen();
}
- void setClient(PingPongClientProxy proxy) {
- assert(_proxy == null);
- _proxy = proxy;
+ void setClient(ProxyBase proxyBase) {
+ assert(_pingPongClient == null);
+ _pingPongClient = proxyBase;
}
- void ping(int pingValue) => _proxy.pong(pingValue + 1);
+ void ping(int pingValue) => _pingPongClient.ptr.pong(pingValue + 1);
void quit() {
- if (_proxy != null) {
- _proxy.close();
+ if (_pingPongClient != null) {
+ _pingPongClient.close();
+ _pingPongClient = null;
}
- super.close();
+ _stub.close();
if (_application != null) {
_application.close();
}
@@ -40,7 +44,7 @@ class PingPongApplication extends Application {
PingPongApplication.fromHandle(MojoHandle handle) : super.fromHandle(handle);
void acceptConnection(String requestorUrl, ApplicationConnection connection) {
- connection.provideService(PingPongService.name,
+ connection.provideService(PingPongServiceName,
(endpoint) => new PingPongServiceImpl(this, endpoint));
connection.listen();
}
@@ -49,6 +53,5 @@ class PingPongApplication extends Application {
main(List args) {
MojoHandle appHandle = new MojoHandle(args[0]);
String url = args[1];
- var pingPongApplication = new PingPongApplication.fromHandle(appHandle);
- pingPongApplication.listen();
+ new PingPongApplication.fromHandle(appHandle);
}

Powered by Google App Engine
This is Rietveld 408576698