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

Unified Diff: services/files/main.cc

Issue 1058163002: Replaces |shell_handle| with |application_request| as the name of the parameter to MojoMain(). (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 9 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
Index: services/files/main.cc
diff --git a/services/files/main.cc b/services/files/main.cc
index 3a1781950b51d10eb469776030726b628237c1ac..3d840b08db387eaf4bc9b6171a9c42e5a6ab010c 100644
--- a/services/files/main.cc
+++ b/services/files/main.cc
@@ -38,7 +38,7 @@ class FilesApp : public ApplicationDelegate, public InterfaceFactory<Files> {
} // namespace files
} // namespace mojo
-MojoResult MojoMain(MojoHandle shell_handle) {
+MojoResult MojoMain(MojoHandle application_request) {
mojo::ApplicationRunnerChromium runner(new mojo::files::FilesApp());
- return runner.Run(shell_handle);
+ return runner.Run(application_request);
}
« no previous file with comments | « services/fake_surfaces/fake_surfaces_service_application.cc ('k') | services/http_server/http_server_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698