| 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 20c319d6e47c4c0f00b7f5f0ab5372d8e8d62b3d..23f381b039280ca66b0414eb69e3384bf048779a 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
|
|
|