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

Unified Diff: mojo/public/cpp/bindings/tests/versioning_test_service.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/public/cpp/application/run_application.h ('k') | mojo/public/cpp/utility/lib/run_loop.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/cpp/bindings/tests/versioning_test_service.cc
diff --git a/mojo/public/cpp/bindings/tests/versioning_test_service.cc b/mojo/public/cpp/bindings/tests/versioning_test_service.cc
index 3f7d5036c9aae22e970fe506e247558df2056782..7c59787ef1563688896bdf9d6f46b3cc53a2ff47 100644
--- a/mojo/public/cpp/bindings/tests/versioning_test_service.cc
+++ b/mojo/public/cpp/bindings/tests/versioning_test_service.cc
@@ -121,6 +121,5 @@ class HumanResourceSystemServer : public ApplicationImplBase {
MojoResult MojoMain(MojoHandle application_request) {
mojo::test::versioning::HumanResourceSystemServer hr_system_server;
- mojo::RunApplication(application_request, &hr_system_server);
- return MOJO_RESULT_OK;
+ return mojo::RunApplication(application_request, &hr_system_server);
}
« no previous file with comments | « mojo/public/cpp/application/run_application.h ('k') | mojo/public/cpp/utility/lib/run_loop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698