| Index: ui/views/widget/native_widget_aura.h
|
| diff --git a/ui/views/widget/native_widget_aura.h b/ui/views/widget/native_widget_aura.h
|
| index d146928084ee81528c6fef4f3be2e80ccf21c074..ea8501250643e9f85b937e12df93c54daf2f45c0 100644
|
| --- a/ui/views/widget/native_widget_aura.h
|
| +++ b/ui/views/widget/native_widget_aura.h
|
| @@ -16,7 +16,6 @@
|
| #include "ui/views/widget/native_widget_private.h"
|
| #include "ui/wm/public/activation_change_observer.h"
|
| #include "ui/wm/public/activation_delegate.h"
|
| -#include "ui/wm/public/cursor_delegate.h"
|
| #include "ui/wm/public/drag_drop_delegate.h"
|
|
|
| namespace aura {
|
| @@ -39,8 +38,7 @@
|
| public aura::client::ActivationDelegate,
|
| public aura::client::ActivationChangeObserver,
|
| public aura::client::FocusChangeObserver,
|
| - public aura::client::DragDropDelegate,
|
| - public wm::CursorDelegate {
|
| + public aura::client::DragDropDelegate {
|
| public:
|
| explicit NativeWidgetAura(internal::NativeWidgetDelegate* delegate);
|
|
|
| @@ -146,6 +144,7 @@
|
| virtual gfx::Size GetMaximumSize() const OVERRIDE;
|
| virtual void OnBoundsChanged(const gfx::Rect& old_bounds,
|
| const gfx::Rect& new_bounds) OVERRIDE;
|
| + virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE;
|
| virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE;
|
| virtual bool ShouldDescendIntoChildForEventHandling(
|
| aura::Window* child,
|
| @@ -186,9 +185,6 @@
|
| virtual void OnDragExited() OVERRIDE;
|
| virtual int OnPerformDrop(const ui::DropTargetEvent& event) OVERRIDE;
|
|
|
| - // Overridden from wm::CursorDelegate:
|
| - virtual gfx::NativeCursor GetCursorForPoint(const gfx::Point& point) OVERRIDE;
|
| -
|
| // Overridden from NativeWidget:
|
| virtual ui::EventHandler* GetEventHandler() OVERRIDE;
|
|
|
|
|