| Index: mojo/services/network/http_server_impl.h
|
| diff --git a/mojo/services/network/http_server_impl.h b/mojo/services/network/http_server_impl.h
|
| index b2f6f9d63af5f2fc9728db6c84b9ca0a73151f63..d7ccdb36e5074c4bfaf30691f41da62157172a01 100644
|
| --- a/mojo/services/network/http_server_impl.h
|
| +++ b/mojo/services/network/http_server_impl.h
|
| @@ -26,7 +26,7 @@ class HttpServerImpl : public net::HttpServer::Delegate {
|
| public:
|
| static void Create(
|
| NetAddressPtr local_address,
|
| - HttpServerDelegatePtr delegate,
|
| + InterfaceHandle<HttpServerDelegate> delegate,
|
| const Callback<void(NetworkErrorPtr, NetAddressPtr)>& callback);
|
|
|
| net::HttpServer* server() { return server_.get(); }
|
| @@ -36,7 +36,7 @@ class HttpServerImpl : public net::HttpServer::Delegate {
|
| // |delegate|'s underlying pipe. The object will self-destruct when it is
|
| // notified that |delegate|'s pipe is closed. Deleting the object directly
|
| // before that is okay, too.
|
| - explicit HttpServerImpl(HttpServerDelegatePtr delegate);
|
| + explicit HttpServerImpl(InterfaceHandle<HttpServerDelegate> delegate);
|
| virtual ~HttpServerImpl();
|
|
|
| int Start(NetAddressPtr local_address);
|
|
|