| Index: content/browser/renderer_host/input/touch_selection_controller.h
|
| diff --git a/content/browser/renderer_host/input/touch_selection_controller.h b/content/browser/renderer_host/input/touch_selection_controller.h
|
| index 1ded1a97a1c7e607200cf918782cd968b9cbf3f7..abe4ed46facc761a046c708cf0adaf51825a39f9 100644
|
| --- a/content/browser/renderer_host/input/touch_selection_controller.h
|
| +++ b/content/browser/renderer_host/input/touch_selection_controller.h
|
| @@ -31,8 +31,9 @@ class CONTENT_EXPORT TouchSelectionControllerClient {
|
| virtual bool SupportsAnimation() const = 0;
|
| virtual void SetNeedsAnimate() = 0;
|
| virtual void MoveCaret(const gfx::PointF& position) = 0;
|
| - virtual void SelectBetweenCoordinates(const gfx::PointF& start,
|
| - const gfx::PointF& end) = 0;
|
| + virtual void MoveRangeSelectionExtent(const gfx::PointF& extent) = 0;
|
| + virtual void SelectBetweenCoordinates(const gfx::PointF& base,
|
| + const gfx::PointF& extent) = 0;
|
| virtual void OnSelectionEvent(SelectionEventType event,
|
| const gfx::PointF& position) = 0;
|
| virtual scoped_ptr<TouchHandleDrawable> CreateDrawable() = 0;
|
| @@ -133,7 +134,6 @@ class CONTENT_EXPORT TouchSelectionController : public TouchHandleClient {
|
|
|
| scoped_ptr<TouchHandle> start_selection_handle_;
|
| scoped_ptr<TouchHandle> end_selection_handle_;
|
| - gfx::PointF fixed_handle_position_;
|
| bool is_selection_active_;
|
| bool activate_selection_automatically_;
|
|
|
|
|