| Index: ui/touch_selection/touch_selection_controller_unittest.cc
|
| diff --git a/ui/touch_selection/touch_selection_controller_unittest.cc b/ui/touch_selection/touch_selection_controller_unittest.cc
|
| index f6e7305f067a0fec6d960115d5e7723975bd3159..73e11323534ffe527ac3ae5cce9af3ba8ea182c6 100644
|
| --- a/ui/touch_selection/touch_selection_controller_unittest.cc
|
| +++ b/ui/touch_selection/touch_selection_controller_unittest.cc
|
| @@ -28,13 +28,16 @@ class MockTouchHandleDrawable : public TouchHandleDrawable {
|
| : intersects_rect_(contains_point) {}
|
| ~MockTouchHandleDrawable() override {}
|
| void SetEnabled(bool enabled) override {}
|
| - void SetOrientation(TouchHandleOrientation orientation) override {}
|
| + void SetOrientation(ui::TouchHandleOrientation orientation,
|
| + bool mirror_vertical,
|
| + bool mirror_horizontal) override {}
|
| + void SetOrigin(const gfx::PointF& origin) override {}
|
| void SetAlpha(float alpha) override {}
|
| - void SetFocus(const gfx::PointF& position) override {}
|
| gfx::RectF GetVisibleBounds() const override {
|
| return *intersects_rect_ ? gfx::RectF(-1000, -1000, 2000, 2000)
|
| : gfx::RectF(-1000, -1000, 0, 0);
|
| }
|
| + float GetDrawableHorizontalPaddingRatio() const override { return 0; }
|
|
|
| private:
|
| bool* intersects_rect_;
|
|
|