| Index: views/widget/root_view.h
|
| diff --git a/views/widget/root_view.h b/views/widget/root_view.h
|
| index b6f766217f0d39556b6b164046210545a472aa94..b9a31d77cec76b5a31a5b243b4c93a521c0d5748 100644
|
| --- a/views/widget/root_view.h
|
| +++ b/views/widget/root_view.h
|
| @@ -59,10 +59,6 @@ class RootView : public View,
|
|
|
| // Input ---------------------------------------------------------------------
|
|
|
| - // Invoked By the Widget if the mouse drag is interrupted by
|
| - // the system. Invokes OnMouseReleased with a value of true for canceled.
|
| - void ProcessMouseDragCanceled();
|
| -
|
| // Process a key event. Send the event to the focused view and up the focus
|
| // path, and finally to the default keyboard handler, until someone consumes
|
| // it. Returns whether anyone consumed the event.
|
| @@ -106,7 +102,8 @@ class RootView : public View,
|
| virtual void SchedulePaintInRect(const gfx::Rect& rect) OVERRIDE;
|
| virtual bool OnMousePressed(const MouseEvent& event) OVERRIDE;
|
| virtual bool OnMouseDragged(const MouseEvent& event) OVERRIDE;
|
| - virtual void OnMouseReleased(const MouseEvent& event, bool canceled) OVERRIDE;
|
| + virtual void OnMouseReleased(const MouseEvent& event) OVERRIDE;
|
| + virtual void OnMouseCaptureLost() OVERRIDE;
|
| virtual void OnMouseMoved(const MouseEvent& event) OVERRIDE;
|
| virtual void OnMouseExited(const MouseEvent& event) OVERRIDE;
|
| virtual bool OnMouseWheel(const MouseWheelEvent& event) OVERRIDE;
|
|
|