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

Unified Diff: examples/window_manager/window_manager.cc

Issue 943053003: Simple multi-url support for mojo apps (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: hate 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: examples/window_manager/window_manager.cc
diff --git a/examples/window_manager/window_manager.cc b/examples/window_manager/window_manager.cc
index fe5725594b2bf857c45cf97b5a26c8f487df50a1..5186364cda8a91a481cf07d93e21cb31ab074432 100644
--- a/examples/window_manager/window_manager.cc
+++ b/examples/window_manager/window_manager.cc
@@ -288,9 +288,10 @@ class WindowManager
}
virtual bool ConfigureIncomingConnection(
- ApplicationConnection* connection) override {
+ ApplicationConnection* connection,
+ const std::string& url) override {
connection->AddService<IWindowManager>(this);
- window_manager_app_->ConfigureIncomingConnection(connection);
+ window_manager_app_->ConfigureIncomingConnection(connection, url);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698