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

Unified Diff: mojo/public/c/system/main.h

Issue 1057333003: Rename the parameter to MojoMain() from "service_provider_handle" to "application_request " (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 5 years, 8 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 | shell/native_application_support.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/c/system/main.h
diff --git a/mojo/public/c/system/main.h b/mojo/public/c/system/main.h
index 31e20120e15f5cc18aee1244bfb38b1ae770c872..65d0837c03eb9baf5604ee42a5d25266be749c9f 100644
--- a/mojo/public/c/system/main.h
+++ b/mojo/public/c/system/main.h
@@ -9,7 +9,7 @@
// Implement MojoMain directly as the entry point for an application.
//
-// MojoResult MojoMain(MojoHandle service_provider_handle) {
+// MojoResult MojoMain(MojoHandle application_request) {
// ...
// }
//
@@ -22,7 +22,7 @@ extern "C" {
#if defined(WIN32)
__declspec(dllexport) MojoResult
- __cdecl MojoMain(MojoHandle service_provider_handle);
+ __cdecl MojoMain(MojoHandle application_request);
#else // !defined(WIN32)
__attribute__((visibility("default"))) MojoResult
MojoMain(MojoHandle service_provider_handle);
« no previous file with comments | « no previous file | shell/native_application_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698