| Index: third_party/WebKit/Source/core/frame/FrameView.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| index a8d40a8c5b11c1b2e3423c6fa5bcab5be896170c..5388a4a12acff0dd16413f0370ed301e1f931fa3 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| @@ -1986,10 +1986,10 @@ bool FrameView::computeCompositedSelection(LocalFrame& frame,
|
| }
|
| selection.start.isTextDirectionRTL |=
|
| primaryDirectionOf(*visibleSelection.start().anchorNode()) ==
|
| - TextDirection::Rtl;
|
| + TextDirection::kRtl;
|
| selection.end.isTextDirectionRTL |=
|
| primaryDirectionOf(*visibleSelection.end().anchorNode()) ==
|
| - TextDirection::Rtl;
|
| + TextDirection::kRtl;
|
|
|
| return true;
|
| }
|
|
|