| Index: examples/forwarding_content_handler/forwarding_content_handler.cc
|
| diff --git a/examples/forwarding_content_handler/forwarding_content_handler.cc b/examples/forwarding_content_handler/forwarding_content_handler.cc
|
| index de374b823416064b57c047c7083e70f1357aa839..812a0a2cfcd6520229f89d75cc90bc7daef95548 100644
|
| --- a/examples/forwarding_content_handler/forwarding_content_handler.cc
|
| +++ b/examples/forwarding_content_handler/forwarding_content_handler.cc
|
| @@ -37,10 +37,9 @@ class ForwardingApplicationImpl : public Application {
|
| shell_ = ShellPtr::Create(std::move(shell));
|
| }
|
| void AcceptConnection(const String& requestor_url,
|
| - InterfaceRequest<ServiceProvider> services,
|
| - InterfaceHandle<ServiceProvider> exposed_services,
|
| - const String& requested_url) override {
|
| - shell_->ConnectToApplication(target_url_, services.Pass(), nullptr);
|
| + const String& requested_url,
|
| + InterfaceRequest<ServiceProvider> services) override {
|
| + shell_->ConnectToApplication(target_url_, services.Pass());
|
| }
|
| void RequestQuit() override {
|
| RunLoop::current()->Quit();
|
|
|