| Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| index f7fefe576aff17d0c7013f36525d5b7ed36552cc..39f3a0a43e4ccf1943c2ecbc8e3e2e6bdcb6652e 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| @@ -3245,21 +3245,11 @@ int LayoutObject::caretMaxOffset() const
|
| return 0;
|
| }
|
|
|
| -int LayoutObject::previousOffset(int current) const
|
| -{
|
| - return current - 1;
|
| -}
|
| -
|
| int LayoutObject::previousOffsetForBackwardDeletion(int current) const
|
| {
|
| return current - 1;
|
| }
|
|
|
| -int LayoutObject::nextOffset(int current) const
|
| -{
|
| - return current + 1;
|
| -}
|
| -
|
| bool LayoutObject::isInert() const
|
| {
|
| const LayoutObject* layoutObject = this;
|
|
|