Index: ui/views/widget/desktop_aura/desktop_root_window_host.h |
diff --git a/ui/views/widget/desktop_aura/desktop_root_window_host.h b/ui/views/widget/desktop_aura/desktop_root_window_host.h |
index fed998e4cd457d66805722ee61d4ea1ee4b5c317..9330bf6fc498b097a8be9c930b2d3549005a31b9 100644 |
--- a/ui/views/widget/desktop_aura/desktop_root_window_host.h |
+++ b/ui/views/widget/desktop_aura/desktop_root_window_host.h |
@@ -12,7 +12,7 @@ |
#include "ui/views/widget/widget.h" |
namespace aura { |
-class RootWindowHost; |
+class WindowTreeHost; |
class Window; |
namespace client { |
@@ -42,11 +42,11 @@ class NativeWidgetDelegate; |
class DesktopNativeCursorManager; |
class DesktopNativeWidgetAura; |
-class VIEWS_EXPORT DesktopRootWindowHost { |
+class VIEWS_EXPORT DesktopWindowTreeHost { |
public: |
- virtual ~DesktopRootWindowHost() {} |
+ virtual ~DesktopWindowTreeHost() {} |
- static DesktopRootWindowHost* Create( |
+ static DesktopWindowTreeHost* Create( |
internal::NativeWidgetDelegate* native_widget_delegate, |
DesktopNativeWidgetAura* desktop_native_widget_aura); |
@@ -64,19 +64,19 @@ class VIEWS_EXPORT DesktopRootWindowHost { |
// Creates and returns the Tooltip implementation to use. Return value is |
// owned by DesktopNativeWidgetAura and lives as long as |
- // DesktopRootWindowHost. |
+ // DesktopWindowTreeHost. |
virtual scoped_ptr<corewm::Tooltip> CreateTooltip() = 0; |
// Creates and returns the DragDropClient implementation to use. Return value |
// is owned by DesktopNativeWidgetAura and lives as long as |
- // DesktopRootWindowHost. |
+ // DesktopWindowTreeHost. |
virtual scoped_ptr<aura::client::DragDropClient> CreateDragDropClient( |
DesktopNativeCursorManager* cursor_manager) = 0; |
virtual void Close() = 0; |
virtual void CloseNow() = 0; |
- virtual aura::RootWindowHost* AsRootWindowHost() = 0; |
+ virtual aura::WindowTreeHost* AsWindowTreeHost() = 0; |
virtual void ShowWindowWithState(ui::WindowShowState show_state) = 0; |
virtual void ShowMaximizedWithBounds(const gfx::Rect& restored_bounds) = 0; |