| 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 189ac67d4a19286d009d5007891ce90cd23d473a..bf729d599147944eebbb7461a71e8f25c3dd277f 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -778,11 +778,14 @@ void ContentViewCoreImpl::RemoveLayer(scoped_refptr<cc::Layer> layer) {
|
| root_layer_->SetIsDrawable(true);
|
| }
|
|
|
| -void ContentViewCoreImpl::MoveRangeSelectionExtent(const gfx::PointF& extent) {
|
| +void ContentViewCoreImpl::MoveRangeSelectionExtent(
|
| + const gfx::PointF& extent,
|
| + ui::TextSelectionGranularity granularity) {
|
| if (!web_contents_)
|
| return;
|
|
|
| - web_contents_->MoveRangeSelectionExtent(gfx::Point(extent.x(), extent.y()));
|
| + web_contents_->MoveRangeSelectionExtent(gfx::Point(extent.x(), extent.y()),
|
| + granularity);
|
| }
|
|
|
| void ContentViewCoreImpl::SelectBetweenCoordinates(const gfx::PointF& base,
|
|
|