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

Unified Diff: services/test_service/test_request_tracker_application.cc

Issue 2011593002: Make RunApplication() return a MojoResult and TerminateApplication() take one. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: doh 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 | « mojo/services/log/cpp/log_client.h ('k') | services/test_service/test_service_application.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/test_service/test_request_tracker_application.cc
diff --git a/services/test_service/test_request_tracker_application.cc b/services/test_service/test_request_tracker_application.cc
index 2c41f76883853008e12dfe8f02e8c2718e871d0e..9a0f6122416713b0a5d32f597f9bd103a980b6c6 100644
--- a/services/test_service/test_request_tracker_application.cc
+++ b/services/test_service/test_request_tracker_application.cc
@@ -43,6 +43,5 @@ bool TestRequestTrackerApplication::OnAcceptConnection(
MojoResult MojoMain(MojoHandle application_request) {
mojo::test::TestRequestTrackerApplication app;
- mojo::RunApplication(application_request, &app);
- return MOJO_RESULT_OK;
+ return mojo::RunApplication(application_request, &app);
}
« no previous file with comments | « mojo/services/log/cpp/log_client.h ('k') | services/test_service/test_service_application.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698