| 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 bc8a0bc9f8659dfae14673cbf8a6e85e66694b13..b2875cc7b9eb7ab41c2a19acc9b570eb8235995a 100644
|
| --- a/ui/touch_selection/touch_selection_controller_unittest.cc
|
| +++ b/ui/touch_selection/touch_selection_controller_unittest.cc
|
| @@ -117,7 +117,7 @@ class TouchSelectionControllerTest : public testing::Test,
|
| void SetDraggingEnabled(bool enabled) { dragging_enabled_ = enabled; }
|
|
|
| void ClearSelection() {
|
| - controller_->OnSelectionBoundsChanged(SelectionBound(),
|
| + controller_->OnSelectionBoundsUpdated(SelectionBound(),
|
| SelectionBound());
|
| }
|
|
|
| @@ -128,7 +128,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,
|
| @@ -142,7 +142,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() {
|
|
|