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

Unified Diff: shell/external_application_listener_unittest.cc

Issue 943053003: Simple multi-url support for mojo apps (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebase + fix android Created 5 years, 10 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: shell/external_application_listener_unittest.cc
diff --git a/shell/external_application_listener_unittest.cc b/shell/external_application_listener_unittest.cc
index 9c50fbdfb25c208f95b6a51a27f0dcfe4295a12c..a0d6deee2b1e8e7ee15f078a2c645ebf4c93d4de 100644
--- a/shell/external_application_listener_unittest.cc
+++ b/shell/external_application_listener_unittest.cc
@@ -99,11 +99,11 @@ class StubShellImpl : public Shell {
~StubShellImpl() override {}
private:
- void ConnectToApplication(const String& requestor_url,
+ void ConnectToApplication(const String& app_url,
InterfaceRequest<ServiceProvider> services,
ServiceProviderPtr exposed_services) override {
- application_->AcceptConnection(requestor_url, services.Pass(),
- exposed_services.Pass());
+ application_->AcceptConnection("", services.Pass(), exposed_services.Pass(),
+ app_url);
}
ApplicationPtr application_;

Powered by Google App Engine
This is Rietveld 408576698