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

Unified Diff: examples/recipes/window_manager/main.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/recipes/window_manager/main.cc
diff --git a/examples/recipes/window_manager/main.cc b/examples/recipes/window_manager/main.cc
index ec63f8ba540abc63e158b91c59492e3ed1c44cfc..d25ffd877a8e4b78a7f0adaf1575bb2ed2f10ac7 100644
--- a/examples/recipes/window_manager/main.cc
+++ b/examples/recipes/window_manager/main.cc
@@ -39,8 +39,8 @@ class Main : public mojo::ApplicationDelegate,
}
}
bool ConfigureIncomingConnection(
- mojo::ApplicationConnection* connection) override {
- window_manager_app_->ConfigureIncomingConnection(connection);
+ mojo::ApplicationConnection* connection, const std::string& url) override {
+ window_manager_app_->ConfigureIncomingConnection(connection, url);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698