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

Unified Diff: services/log/main.cc

Issue 1979723002: ApplicationConnection devolution, part 3. (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/keyboard/linux/main.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 2b5c92cb55dea590aecaaa2a7fbcd2c30ab723a0..f9f8610c86d7096c3f132ec9ba0afa1975ac9f3c 100644
--- a/services/log/main.cc
+++ b/services/log/main.cc
@@ -26,8 +26,9 @@ class LogApp : public ApplicationDelegate {
private:
// |ApplicationDelegate| override:
- bool ConfigureIncomingConnection(ApplicationConnection* connection) override {
- connection->GetServiceProviderImpl().AddService<Log>(
+ bool ConfigureIncomingConnection(
+ ServiceProviderImpl* service_provider_impl) override {
+ service_provider_impl->AddService<Log>(
[](const ConnectionContext& connection_context,
InterfaceRequest<Log> log_request) {
LogImpl::Create(connection_context, std::move(log_request),
« no previous file with comments | « services/keyboard/linux/main.cc ('k') | services/media/audio/audio_server_app.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698