| 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 4e33594acc353d1784710ca32041c3ee269ab694..8270357406595cea3acbb543c939363725a68f82 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_;
|
|
|
|
|