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

Unified Diff: services/log/main.cc

Issue 1975993002: Change InterfaceFactory<I>::Create() to take a ConnectionContext instead of an ApplicationConnectio… (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « services/log/log_impl_unittest.cc ('k') | services/media/audio/audio_server_app.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
});
« no previous file with comments | « services/log/log_impl_unittest.cc ('k') | services/media/audio/audio_server_app.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698