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

Unified Diff: mojo/examples/sample_app/sample_app.cc

Issue 128803002: Mojo: Remove utility:: namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix build Created 6 years, 11 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 | « no previous file | mojo/public/utility/bindings_support_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(
« no previous file with comments | « no previous file | mojo/public/utility/bindings_support_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698