| Index: content/browser/android/content_view_core_impl.cc
|
| diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc
|
| index 69449fb5db4c006a4e69bc9a574e69eeb8c9a6d1..9f70bec9af4bdbf110be3e22f35883fe541af0e3 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -777,6 +777,13 @@ void ContentViewCoreImpl::RemoveLayer(scoped_refptr<cc::Layer> layer) {
|
| root_layer_->SetIsDrawable(true);
|
| }
|
|
|
| +void ContentViewCoreImpl::MoveSelectionExtent(const gfx::PointF& position) {
|
| + if (!web_contents_)
|
| + return;
|
| +
|
| + web_contents_->MoveSelectionExtent(gfx::Point(position.x(), position.y()));
|
| +}
|
| +
|
| void ContentViewCoreImpl::SelectBetweenCoordinates(const gfx::PointF& start,
|
| const gfx::PointF& end) {
|
| if (!web_contents_)
|
|
|