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

Unified Diff: services/test_service/test_service_application.cc

Issue 924543003: Avoid InterfaceImpl in //services/test_service (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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
« no previous file with comments | « services/test_service/test_request_tracker_impl.cc ('k') | services/test_service/test_service_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/test_service/test_service_application.cc
diff --git a/services/test_service/test_service_application.cc b/services/test_service/test_service_application.cc
index 2d11e8e6b0f232c2f756d63b6f660a929fa944cd..67da318d2c7e56de1f0da18bd1ad5a7cb4bb56c2 100644
--- a/services/test_service/test_service_application.cc
+++ b/services/test_service/test_service_application.cc
@@ -36,7 +36,7 @@ bool TestServiceApplication::ConfigureIncomingConnection(
void TestServiceApplication::Create(ApplicationConnection* connection,
InterfaceRequest<TestService> request) {
- BindToRequest(new TestServiceImpl(app_impl_, this), &request);
+ new TestServiceImpl(app_impl_, this, request.Pass());
AddRef();
}
« no previous file with comments | « services/test_service/test_request_tracker_impl.cc ('k') | services/test_service/test_service_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698