| Index: ui/touch_selection/touch_selection_controller_aura.h
|
| diff --git a/ui/touch_selection/touch_selection_controller_aura.h b/ui/touch_selection/touch_selection_controller_aura.h
|
| index fa79740766537ef222a579545dc3a6e07b5db3c9..eaf999fb486b31cac4ab1d59221fee17cf00089f 100644
|
| --- a/ui/touch_selection/touch_selection_controller_aura.h
|
| +++ b/ui/touch_selection/touch_selection_controller_aura.h
|
| @@ -24,7 +24,9 @@ class UI_TOUCH_SELECTION_EXPORT TouchSelectionControllerAuraClient {
|
| virtual ~TouchSelectionControllerAuraClient() {};
|
|
|
| virtual void MoveCaret(const gfx::PointF& position) = 0;
|
| - virtual void MoveRangeSelectionExtent(const gfx::PointF& extent) = 0;
|
| + virtual void MoveRangeSelectionExtent(
|
| + const gfx::PointF& extent,
|
| + ui::TextSelectionGranularity granularity) = 0;
|
| virtual void SelectBetweenCoordinates(const gfx::PointF& base,
|
| const gfx::PointF& extent) = 0;
|
| virtual aura::Window* GetParentWindow() const = 0;
|
| @@ -67,7 +69,9 @@ class UI_TOUCH_SELECTION_EXPORT TouchSelectionControllerAura
|
| bool SupportsAnimation() const override;
|
| void SetNeedsAnimate() override;
|
| void MoveCaret(const gfx::PointF& position) override;
|
| - void MoveRangeSelectionExtent(const gfx::PointF& extent) override;
|
| + void MoveRangeSelectionExtent(
|
| + const gfx::PointF& extent,
|
| + ui::TextSelectionGranularity granularity) override;
|
| void SelectBetweenCoordinates(const gfx::PointF& base,
|
| const gfx::PointF& extent) override;
|
| void OnSelectionEvent(SelectionEventType event,
|
|
|