| Index: third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutView.cpp b/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| index f52868eec17e7cfbe52c5954ba997a98553bfc24..b84d3ecc58a913302b327dec36d660c346fc8185 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| @@ -867,16 +867,6 @@ void LayoutView::commitPendingSelection() {
|
| m_frameView->frame().selection().commitAppearanceIfNeeded(*this);
|
| }
|
|
|
| -LayoutObject* LayoutView::selectionStart() {
|
| - commitPendingSelection();
|
| - return m_selectionStart;
|
| -}
|
| -
|
| -LayoutObject* LayoutView::selectionEnd() {
|
| - commitPendingSelection();
|
| - return m_selectionEnd;
|
| -}
|
| -
|
| void LayoutView::selectionStartEnd(int& startPos, int& endPos) {
|
| commitPendingSelection();
|
| startPos = m_selectionStartPos;
|
|
|