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

Unified Diff: mojo/dart/apptests/test_apps/pingpong/lib/main.dart

Issue 1753013002: Mojom runtime type info: New implementation for Dart. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: No changes to sha1s Created 4 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: mojo/dart/apptests/test_apps/pingpong/lib/main.dart
diff --git a/mojo/dart/apptests/test_apps/pingpong/lib/main.dart b/mojo/dart/apptests/test_apps/pingpong/lib/main.dart
index ea47944a92361a9f88d78f903ea6d445a820b7f5..12eaaff1d464c653ce3f1a127d6cc8093c8d7b29 100644
--- a/mojo/dart/apptests/test_apps/pingpong/lib/main.dart
+++ b/mojo/dart/apptests/test_apps/pingpong/lib/main.dart
@@ -117,7 +117,8 @@ class PingPongApplication extends Application {
connection.remoteServiceProvider.close();
connection.provideService(PingPongService.serviceName,
- (endpoint) => new PingPongServiceImpl(this, endpoint));
+ (endpoint) => new PingPongServiceImpl(this, endpoint),
+ description: PingPongServiceStub.serviceDescription);
}
}

Powered by Google App Engine
This is Rietveld 408576698