| Index: third_party/WebKit/Source/core/editing/SelectionModifier.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/SelectionModifier.cpp b/third_party/WebKit/Source/core/editing/SelectionModifier.cpp
|
| index 87bd799dfdd2577fd1b9aab18c5efe0319e40174..325e9df81fc7046fe07e09bc30f1cf26620a3db9 100644
|
| --- a/third_party/WebKit/Source/core/editing/SelectionModifier.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/SelectionModifier.cpp
|
| @@ -130,7 +130,7 @@ void SelectionModifier::willBeModified(EAlteration alter,
|
|
|
| VisiblePosition SelectionModifier::positionForPlatform(bool isGetStart) const {
|
| Settings* settings = frame() ? frame()->settings() : nullptr;
|
| - if (settings && settings->editingBehaviorType() == EditingMacBehavior)
|
| + if (settings && settings->getEditingBehaviorType() == EditingMacBehavior)
|
| return isGetStart ? m_selection.visibleStart() : m_selection.visibleEnd();
|
| // Linux and Windows always extend selections from the extent endpoint.
|
| // FIXME: VisibleSelection should be fixed to ensure as an invariant that
|
|
|