| Index: ui/aura/root_window.h
|
| diff --git a/ui/aura/root_window.h b/ui/aura/root_window.h
|
| index 06755667fb240b3e255fba9dde1abe87ac2d72df..04756cd7e718a033dc2d7076841795ac716110f6 100644
|
| --- a/ui/aura/root_window.h
|
| +++ b/ui/aura/root_window.h
|
| @@ -114,8 +114,8 @@ class AURA_EXPORT RootWindow : public ui::CompositorDelegate,
|
| // used.
|
| void SetCursor(gfx::NativeCursor cursor);
|
|
|
| - // Invoked when the cursor's visibility has changed.
|
| - void OnCursorVisibilityChanged(bool visible);
|
| + // Invoked when the cursor gets enabled or disabled.
|
| + void OnCursorEnableStateChanged(bool enabled);
|
|
|
| // Moves the cursor to the specified location relative to the root window.
|
| virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
| @@ -256,7 +256,7 @@ class AURA_EXPORT RootWindow : public ui::CompositorDelegate,
|
| virtual void ReleaseNativeCapture() OVERRIDE;
|
|
|
| // Exposes RootWindowHost::QueryMouseLocation() for test purposes.
|
| - gfx::Point QueryMouseLocationForTest() const;
|
| + bool QueryMouseLocationForTest(gfx::Point* point) const;
|
|
|
| private:
|
| friend class Window;
|
|
|