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

Unified Diff: services/flog/main.cc

Issue 2046703002: Add 'flog' service implementation. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fixes per feedback. Created 4 years, 6 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/flog/flog_service_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/flog/main.cc
diff --git a/services/icu_data/main.cc b/services/flog/main.cc
similarity index 70%
copy from services/icu_data/main.cc
copy to services/flog/main.cc
index 0c409b0fed506465e4c1cdacc2277d183eba5c06..e5b908dda463ac8fca6125e1a9ab1f41ee1ba2de 100644
--- a/services/icu_data/main.cc
+++ b/services/flog/main.cc
@@ -5,10 +5,10 @@
#include "mojo/environment/scoped_chromium_init.h"
#include "mojo/public/c/system/main.h"
#include "mojo/public/cpp/application/run_application.h"
-#include "services/icu_data/icu_data_impl.h"
+#include "services/flog/flog_service_impl.h"
MojoResult MojoMain(MojoHandle application_request) {
mojo::ScopedChromiumInit init;
- icu_data::ICUDataImpl icu_data_impl;
- return mojo::RunApplication(application_request, &icu_data_impl);
+ mojo::flog::FlogServiceImpl flog_service_impl;
+ return mojo::RunApplication(application_request, &flog_service_impl);
}
« no previous file with comments | « services/flog/flog_service_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698