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

Unified Diff: mojo/dart/apptests/test_apps/echo/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/echo/lib/main.dart
diff --git a/mojo/dart/apptests/test_apps/echo/lib/main.dart b/mojo/dart/apptests/test_apps/echo/lib/main.dart
index 4ace20ac1e70d7281482d1051c7bd2c6d68358c0..76ad19668b33036fc92569476b3dba9bc56dcd9a 100644
--- a/mojo/dart/apptests/test_apps/echo/lib/main.dart
+++ b/mojo/dart/apptests/test_apps/echo/lib/main.dart
@@ -57,8 +57,6 @@ class EchoApplication extends Application {
@override
void acceptConnection(String requestorUrl, String resolvedUrl,
ApplicationConnection connection) {
- // No services are required from the remote end.
- connection.remoteServiceProvider.close();
connection.provideService(EchoService.serviceName,
(endpoint) => new EchoServiceImpl(this, endpoint));
}

Powered by Google App Engine
This is Rietveld 408576698