Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1276)

Unified Diff: examples/forwarding_content_handler/forwarding_content_handler.cc

Issue 2034383003: Removed exposed_services from mojom definitions. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
« no previous file with comments | « examples/content_handler_demo/content_handler_demo.cc ('k') | examples/moterm_example_app/moterm_example_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698