diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-09 07:40:14 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-09 07:40:14 +0000 |
commit | bb0eada558417510c6c9268b751f2f7d456ffd15 (patch) | |
tree | 8b42789e426b4d623b4db5ac804450e6d4cdbfb2 /mojo/examples | |
parent | a340bb433779e02bf8bff2d38775b30565163c1d (diff) | |
download | chromium_src-bb0eada558417510c6c9268b751f2f7d456ffd15.zip chromium_src-bb0eada558417510c6c9268b751f2f7d456ffd15.tar.gz chromium_src-bb0eada558417510c6c9268b751f2f7d456ffd15.tar.bz2 |
Mojo: Remove utility:: namespace
Public facing APIs should just live in the mojo:: namespace.
R=sky@chromium.org, viettrungluu@chromium.org
Review URL: https://codereview.chromium.org/128803002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243799 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/examples')
-rw-r--r-- | mojo/examples/sample_app/sample_app.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mojo/examples/sample_app/sample_app.cc b/mojo/examples/sample_app/sample_app.cc index 382aac9..c9183f2 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( |