Index: examples/http_handler/http_handler.cc |
diff --git a/examples/http_handler/http_handler.cc b/examples/http_handler/http_handler.cc |
index 4f5c9cc5375f42506b28e1b94ddfabf2e9db2234..f6535c3b1e32306416c1467029b1c7def92154c2 100644 |
--- a/examples/http_handler/http_handler.cc |
+++ b/examples/http_handler/http_handler.cc |
@@ -73,7 +73,7 @@ class HttpHandler : public ApplicationDelegate, |
} // namespace examples |
} // namespace mojo |
-MojoResult MojoMain(MojoHandle shell_handle) { |
+MojoResult MojoMain(MojoHandle application_request) { |
mojo::ApplicationRunnerChromium runner(new mojo::examples::HttpHandler()); |
- return runner.Run(shell_handle); |
+ return runner.Run(application_request); |
} |