Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / mojo / public / cpp / application / connect.h
index e4ba641..a41c028 100644 (file)
@@ -5,18 +5,16 @@
 #ifndef MOJO_PUBLIC_CPP_APPLICATION_CONNECT_H_
 #define MOJO_PUBLIC_CPP_APPLICATION_CONNECT_H_
 
-#include "mojo/public/interfaces/service_provider/service_provider.mojom.h"
+#include "mojo/public/interfaces/application/service_provider.mojom.h"
 
 namespace mojo {
 
 template <typename Interface>
 inline void ConnectToService(ServiceProvider* service_provider,
-                             const std::string& url,
                              InterfacePtr<Interface>* ptr) {
   MessagePipe pipe;
   ptr->Bind(pipe.handle0.Pass());
-  service_provider->ConnectToService(
-      url, Interface::Name_, pipe.handle1.Pass(), std::string());
+  service_provider->ConnectToService(Interface::Name_, pipe.handle1.Pass());
 }
 
 }  // namespace mojo