| Index: services/test_service/test_service_impl.cc
|
| diff --git a/services/test_service/test_service_impl.cc b/services/test_service/test_service_impl.cc
|
| index 1a9cae39f0a21868576544633274043da940393f..21cab52222bbc52e99042f3989d03cff16ac784a 100644
|
| --- a/services/test_service/test_service_impl.cc
|
| +++ b/services/test_service/test_service_impl.cc
|
| @@ -16,8 +16,12 @@ namespace mojo {
|
| namespace test {
|
|
|
| TestServiceImpl::TestServiceImpl(ApplicationImpl* app_impl,
|
| - TestServiceApplication* application)
|
| - : application_(application), app_impl_(app_impl) {
|
| + TestServiceApplication* application,
|
| + InterfaceRequest<TestService> request)
|
| + : application_(application),
|
| + app_impl_(app_impl),
|
| + binding_(this, request.Pass()) {
|
| + binding_.set_error_handler(this);
|
| }
|
|
|
| TestServiceImpl::~TestServiceImpl() {
|
|
|