| Index: mojo/public/cpp/application/connect.h
|
| diff --git a/mojo/public/cpp/application/connect.h b/mojo/public/cpp/application/connect.h
|
| index c747131fc3d4c8da76618420ea6c0daac16c6bf3..24ef4b53ae3ba14663c9f3b20c85ab17e3d4aff1 100644
|
| --- a/mojo/public/cpp/application/connect.h
|
| +++ b/mojo/public/cpp/application/connect.h
|
| @@ -15,7 +15,8 @@ inline void ConnectToService(ServiceProvider* service_provider,
|
| InterfacePtr<Interface>* ptr) {
|
| MessagePipe pipe;
|
| ptr->Bind(pipe.handle0.Pass());
|
| - service_provider->ConnectToService(url, pipe.handle1.Pass());
|
| + service_provider->ConnectToService(
|
| + url, Interface::Name_, pipe.handle1.Pass());
|
| }
|
|
|
| } // namespace mojo
|
|
|