| Index: third_party/WebKit/Source/web/WebSurroundingText.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebSurroundingText.cpp b/third_party/WebKit/Source/web/WebSurroundingText.cpp
|
| index 00958716f6be3d78d3d3816f7e76e0222b25b575..6fd33f8ed7dcd1c640309e09850232951dfc62d6 100644
|
| --- a/third_party/WebKit/Source/web/WebSurroundingText.cpp
|
| +++ b/third_party/WebKit/Source/web/WebSurroundingText.cpp
|
| @@ -36,6 +36,14 @@
|
|
|
| namespace blink {
|
|
|
| +WebSurroundingText::WebSurroundingText()
|
| +{
|
| +}
|
| +
|
| +WebSurroundingText::~WebSurroundingText()
|
| +{
|
| +}
|
| +
|
| void WebSurroundingText::initialize(const WebNode& webNode, const WebPoint& nodePoint, size_t maxLength)
|
| {
|
| const Node* node = webNode.constUnwrap<Node>();
|
| @@ -82,9 +90,4 @@ bool WebSurroundingText::isNull() const
|
| return !m_private.get();
|
| }
|
|
|
| -void WebSurroundingText::reset()
|
| -{
|
| - m_private.reset(0);
|
| -}
|
| -
|
| } // namespace blink
|
|
|