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

Unified Diff: mojo/shell/context.h

Issue 47433002: Cleanup mojo_shell and sample_app a bit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | « mojo/shell/app_container.h ('k') | mojo/shell/loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/context.h
diff --git a/mojo/shell/context.h b/mojo/shell/context.h
index 02a513fe371a276edef764eddb65600d5ed83497..30a955e84c873e1ce714d8abdf24ca3895e5c7e5 100644
--- a/mojo/shell/context.h
+++ b/mojo/shell/context.h
@@ -5,7 +5,7 @@
#ifndef MOJO_SHELL_CONTEXT_H_
#define MOJO_SHELL_CONTEXT_H_
-#include "mojo/loader/loader.h"
+#include "mojo/shell/loader.h"
#include "mojo/shell/storage.h"
#include "mojo/shell/task_runners.h"
@@ -19,12 +19,12 @@ class Context {
TaskRunners* task_runners() { return &task_runners_; }
Storage* storage() { return &storage_; }
- loader::Loader* loader() { return &loader_; }
+ Loader* loader() { return &loader_; }
private:
TaskRunners task_runners_;
Storage storage_;
- loader::Loader loader_;
+ Loader loader_;
DISALLOW_COPY_AND_ASSIGN(Context);
};
« no previous file with comments | « mojo/shell/app_container.h ('k') | mojo/shell/loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698