Index: content/browser/renderer_host/input/touch_selection_controller.cc |
diff --git a/content/browser/renderer_host/input/touch_selection_controller.cc b/content/browser/renderer_host/input/touch_selection_controller.cc |
index a7ebb4f429619dc943d55a4e838eed3a90b564a8..8643910c2dc6b4f0858f0acca1a519932f558d12 100644 |
--- a/content/browser/renderer_host/input/touch_selection_controller.cc |
+++ b/content/browser/renderer_host/input/touch_selection_controller.cc |
@@ -183,8 +183,10 @@ bool TouchSelectionController::Animate(base::TimeTicks frame_time) { |
} |
void TouchSelectionController::OnHandleDragBegin(const TouchHandle& handle) { |
- if (&handle == insertion_handle_.get()) |
+ if (&handle == insertion_handle_.get()) { |
+ client_->OnSelectionEvent(INSERTION_DRAG_STARTED, GetStartPosition()); |
return; |
+ } |
if (&handle == start_selection_handle_.get()) { |
fixed_handle_position_ = end_selection_handle_->position() - |