| Index: mojo/examples/sample_app/sample_app.cc
|
| diff --git a/mojo/examples/sample_app/sample_app.cc b/mojo/examples/sample_app/sample_app.cc
|
| index 382aac9be34899c5c6440663004e5c322bf0ff48..c9183f232ac3e31980ca2dd6d053b072b1e55782 100644
|
| --- a/mojo/examples/sample_app/sample_app.cc
|
| +++ b/mojo/examples/sample_app/sample_app.cc
|
| @@ -62,7 +62,7 @@ class SampleApp : public ShellClient {
|
| }
|
|
|
| virtual void OnDestroyed() MOJO_OVERRIDE {
|
| - utility::RunLoop::current()->Quit();
|
| + RunLoop::current()->Quit();
|
| }
|
|
|
| virtual void OnEvent(const Event& event) MOJO_OVERRIDE {
|
| @@ -85,8 +85,8 @@ class SampleApp : public ShellClient {
|
|
|
| extern "C" SAMPLE_APP_EXPORT MojoResult CDECL MojoMain(
|
| MojoHandle shell_handle) {
|
| - mojo::utility::Environment env;
|
| - mojo::utility::RunLoop loop;
|
| + mojo::Environment env;
|
| + mojo::RunLoop loop;
|
| MojoGLES2Initialize();
|
|
|
| mojo::examples::SampleApp app(
|
|
|