| Index: services/log/main.cc
|
| diff --git a/services/log/main.cc b/services/log/main.cc
|
| index 23b8579e667d4d37ca6de4b17bde1a5f59b3a02c..f87f0a38f3e3d09ad73e0c14a591f2f7d99b2fcf 100644
|
| --- a/services/log/main.cc
|
| +++ b/services/log/main.cc
|
| @@ -34,9 +34,9 @@ class LogApp : public ApplicationDelegate, public InterfaceFactory<Log> {
|
|
|
| // |InterfaceFactory<Log>| implementation:
|
| // We maintain a separate |LogImpl| for each incoming connection.
|
| - void Create(ApplicationConnection* connection,
|
| + void Create(const ConnectionContext& connection_context,
|
| InterfaceRequest<Log> request) override {
|
| - LogImpl::Create(connection, std::move(request),
|
| + LogImpl::Create(connection_context, std::move(request),
|
| [](const std::string& message) {
|
| fprintf(stderr, "%s\n", message.c_str());
|
| });
|
|
|