| Index: ash/host/root_window_host_factory.h
|
| diff --git a/ash/host/root_window_host_factory.h b/ash/host/root_window_host_factory.h
|
| index d357d9b2cb33b38f4a7805920299aee2654520cb..d9566287c610eb5e4b5f5c0b33bbaa7f7f708d8e 100644
|
| --- a/ash/host/root_window_host_factory.h
|
| +++ b/ash/host/root_window_host_factory.h
|
| @@ -9,23 +9,23 @@
|
| #include "ui/gfx/rect.h"
|
|
|
| namespace aura {
|
| -class RootWindowHost;
|
| +class WindowTreeHost;
|
| }
|
|
|
| namespace ash {
|
|
|
| -class ASH_EXPORT RootWindowHostFactory {
|
| +class ASH_EXPORT WindowTreeHostFactory {
|
| public:
|
| - virtual ~RootWindowHostFactory() {}
|
| + virtual ~WindowTreeHostFactory() {}
|
|
|
| - static RootWindowHostFactory* Create();
|
| + static WindowTreeHostFactory* Create();
|
|
|
| - // Creates a new aura::RootWindowHost. The caller owns the returned value.
|
| - virtual aura::RootWindowHost* CreateRootWindowHost(
|
| + // Creates a new aura::WindowTreeHost. The caller owns the returned value.
|
| + virtual aura::WindowTreeHost* CreateWindowTreeHost(
|
| const gfx::Rect& initial_bounds) = 0;
|
|
|
| protected:
|
| - RootWindowHostFactory() {}
|
| + WindowTreeHostFactory() {}
|
| };
|
|
|
| } // namespace ash
|
|
|