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

Unified Diff: examples/apptest/example_service_application.cc

Issue 2011383002: Get rid of {Run,Terminate}MainApplication(), and more ApplicationDelegate conversion. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased 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 | « no previous file | examples/audio_play_test/play_tone.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: examples/apptest/example_service_application.cc
diff --git a/examples/apptest/example_service_application.cc b/examples/apptest/example_service_application.cc
index 578bf5913f3da689ae3092febbb50ef16391c605..ccdd6f38c6898241ee10c5532283043e7c6275bc 100644
--- a/examples/apptest/example_service_application.cc
+++ b/examples/apptest/example_service_application.cc
@@ -29,6 +29,6 @@ bool ExampleServiceApplication::OnAcceptConnection(
MojoResult MojoMain(MojoHandle application_request) {
mojo::ExampleServiceApplication example_service_application;
- return mojo::RunMainApplication(application_request,
- &example_service_application);
+ return mojo::RunApplication(application_request,
+ &example_service_application);
}
« no previous file with comments | « no previous file | examples/audio_play_test/play_tone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698