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

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

Issue 1964623002: Make the Dart application library code stop using the "wrong way" service provider (a.k.a. exposed_… (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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/apptests/test_apps/pingpong_target/lib/main.dart
diff --git a/mojo/dart/apptests/test_apps/pingpong_target/lib/main.dart b/mojo/dart/apptests/test_apps/pingpong_target/lib/main.dart
index 8cceaa7954080d9018dade33132f3924c88f695f..5c619ef230c17d7ee0f44cc0d9ac04ad27c3f786 100644
--- a/mojo/dart/apptests/test_apps/pingpong_target/lib/main.dart
+++ b/mojo/dart/apptests/test_apps/pingpong_target/lib/main.dart
@@ -56,9 +56,6 @@ class PingPongApplication extends Application {
// Provide the service implemented by PingPongServiceImpl.
connection.provideService(PingPongService.serviceName,
(endpoint) => new PingPongServiceImpl(this, endpoint));
-
- // No services are required from the remote end.
- connection.remoteServiceProvider.close();
}
Future closeApplication() async {

Powered by Google App Engine
This is Rietveld 408576698