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

Unified Diff: examples/spinning_cube/spinning_cube_app.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
« no previous file with comments | « examples/recursive_content_handler/recursive_content_handler.cc ('k') | examples/surfaces_app/child_app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: examples/spinning_cube/spinning_cube_app.cc
diff --git a/examples/spinning_cube/spinning_cube_app.cc b/examples/spinning_cube/spinning_cube_app.cc
index 1c8d145fdffda7b1e253b1a11b08e6502eedc986..42e64b0b04c449da97fcb437d07489dfac6c2b4c 100644
--- a/examples/spinning_cube/spinning_cube_app.cc
+++ b/examples/spinning_cube/spinning_cube_app.cc
@@ -87,7 +87,7 @@ class SpinningCubeApp : public mojo::ApplicationDelegate,
} // namespace examples
-MojoResult MojoMain(MojoHandle shell_handle) {
+MojoResult MojoMain(MojoHandle application_request) {
mojo::ApplicationRunner runner(new examples::SpinningCubeApp);
- return runner.Run(shell_handle);
+ return runner.Run(application_request);
}
« no previous file with comments | « examples/recursive_content_handler/recursive_content_handler.cc ('k') | examples/surfaces_app/child_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698