Replaces |shell_handle| with |application_request| as the name of the parameter to MojoMain().
BUG=468496
R=viettrungluu@chromium.org, viettrungluu
Review URL: https://codereview.chromium.org/1058163002
diff --git a/shell/test/pingable_app.cc b/shell/test/pingable_app.cc
index b864098..5a52dd6 100644
--- a/shell/test/pingable_app.cc
+++ b/shell/test/pingable_app.cc
@@ -63,7 +63,7 @@
} // namespace mojo
-MojoResult MojoMain(MojoHandle shell_handle) {
+MojoResult MojoMain(MojoHandle application_request) {
mojo::ApplicationRunner runner(new mojo::PingableApp);
- return runner.Run(shell_handle);
+ return runner.Run(application_request);
}