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); |
} |
- |