| 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 83f4549a0ac4b44a04594ce1cce82d1e8ce160e6..67968c1eb9e4f43dd267e95a9f0b768185d16129 100644
|
| --- a/ui/touch_selection/touch_selection_controller_unittest.cc
|
| +++ b/ui/touch_selection/touch_selection_controller_unittest.cc
|
| @@ -118,7 +118,7 @@ class TouchSelectionControllerTest : public testing::Test,
|
| void SetDraggingEnabled(bool enabled) { dragging_enabled_ = enabled; }
|
|
|
| void ClearSelection() {
|
| - controller_->OnSelectionBoundsChanged(SelectionBound(),
|
| + controller_->OnSelectionBoundsUpdated(SelectionBound(),
|
| SelectionBound());
|
| }
|
|
|
| @@ -129,7 +129,7 @@ class TouchSelectionControllerTest : public testing::Test,
|
| bound.set_type(SelectionBound::CENTER);
|
| bound.SetEdge(rect.origin(), rect.bottom_left());
|
| bound.set_visible(visible);
|
| - controller_->OnSelectionBoundsChanged(bound, bound);
|
| + controller_->OnSelectionBoundsUpdated(bound, bound);
|
| }
|
|
|
| void ChangeSelection(const gfx::RectF& start_rect,
|
| @@ -143,7 +143,7 @@ class TouchSelectionControllerTest : public testing::Test,
|
| end_bound.SetEdge(end_rect.origin(), end_rect.bottom_left());
|
| start_bound.set_visible(start_visible);
|
| end_bound.set_visible(end_visible);
|
| - controller_->OnSelectionBoundsChanged(start_bound, end_bound);
|
| + controller_->OnSelectionBoundsUpdated(start_bound, end_bound);
|
| }
|
|
|
| void Animate() {
|
|
|