Index: mojo/examples/aura_demo/demo_context_factory.h |
diff --git a/mojo/examples/aura_demo/demo_context_factory.h b/mojo/examples/aura_demo/demo_context_factory.h |
index f9fdac964deb28b51c5d3ee8883b81d34101d6a3..062db4242156db9a4d86bcc0d8c49a465d68da7b 100644 |
--- a/mojo/examples/aura_demo/demo_context_factory.h |
+++ b/mojo/examples/aura_demo/demo_context_factory.h |
@@ -16,12 +16,12 @@ class ContextProviderInProcess; |
namespace mojo { |
namespace examples { |
-class RootWindowHostMojo; |
+class WindowTreeHostMojo; |
// The default factory that creates in-process contexts. |
class DemoContextFactory : public ui::ContextFactory { |
public: |
- explicit DemoContextFactory(RootWindowHostMojo* rwhm); |
+ explicit DemoContextFactory(WindowTreeHostMojo* rwhm); |
virtual ~DemoContextFactory(); |
// ContextFactory implementation |
@@ -48,7 +48,7 @@ class DemoContextFactory : public ui::ContextFactory { |
scoped_refptr<webkit::gpu::ContextProviderInProcess> |
shared_main_thread_contexts_; |
- RootWindowHostMojo* rwhm_; |
+ WindowTreeHostMojo* rwhm_; |
DISALLOW_COPY_AND_ASSIGN(DemoContextFactory); |
}; |