Index: trunk/src/ui/aura/root_window_host_x11.h |
=================================================================== |
--- trunk/src/ui/aura/root_window_host_x11.h (revision 236091) |
+++ trunk/src/ui/aura/root_window_host_x11.h (working copy) |
@@ -32,17 +32,17 @@ |
class TouchEventCalibrate; |
} |
-class AURA_EXPORT WindowTreeHostX11 : public WindowTreeHost, |
+class AURA_EXPORT RootWindowHostX11 : public RootWindowHost, |
public base::MessageLoop::Dispatcher, |
public EnvObserver { |
public: |
- explicit WindowTreeHostX11(const gfx::Rect& bounds); |
- virtual ~WindowTreeHostX11(); |
+ explicit RootWindowHostX11(const gfx::Rect& bounds); |
+ virtual ~RootWindowHostX11(); |
// Overridden from Dispatcher overrides: |
virtual bool Dispatch(const base::NativeEvent& event) OVERRIDE; |
- // WindowTreeHost Overrides. |
+ // RootWindowHost Overrides. |
virtual RootWindow* GetRootWindow() OVERRIDE; |
virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; |
virtual void Show() OVERRIDE; |
@@ -88,7 +88,7 @@ |
void SetCursorInternal(gfx::NativeCursor cursor); |
// Translates the native mouse location into screen coordinates and and |
- // dispatches the event to WindowTreeHostDelegate. |
+ // dispatches the event to RootWindowHostDelegate. |
void TranslateAndDispatchMouseEvent(ui::MouseEvent* event); |
// Update is_internal_display_ based on delegate_ state |
@@ -137,13 +137,13 @@ |
// Touch ids of which the touch press happens at side bezel region. |
uint32 bezel_tracking_ids_; |
- DISALLOW_COPY_AND_ASSIGN(WindowTreeHostX11); |
+ DISALLOW_COPY_AND_ASSIGN(RootWindowHostX11); |
}; |
namespace test { |
// Set the default value of the override redirect flag used to |
-// create a X window for WindowTreeHostX11. |
+// create a X window for RootWindowHostX11. |
AURA_EXPORT void SetUseOverrideRedirectWindowByDefault(bool override_redirect); |
} // namespace test |