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

Unified Diff: examples/indirect_service/indirect_integer_service.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/indirect_service/indirect_integer_service.cc
diff --git a/examples/indirect_service/indirect_integer_service.cc b/examples/indirect_service/indirect_integer_service.cc
index 2104da6aca60a9bfa78781fe8bef0f4f5b2a39dd..1146318e64f4bf890bca32250f0df2d134257f12 100644
--- a/examples/indirect_service/indirect_integer_service.cc
+++ b/examples/indirect_service/indirect_integer_service.cc
@@ -53,7 +53,7 @@ class IndirectIntegerServiceAppDelegate
public InterfaceFactory<IndirectIntegerService> {
public:
bool ConfigureIncomingConnection(
- ApplicationConnection* connection) override {
+ ApplicationConnection* connection, const std::string& url) override {
connection->AddService(this);
return true;
}
@@ -74,4 +74,3 @@ MojoResult MojoMain(MojoHandle shell_handle) {
new mojo::examples::IndirectIntegerServiceAppDelegate);
return runner.Run(shell_handle);
}
-

Powered by Google App Engine
This is Rietveld 408576698