| 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 82fd5b0700a9f97a3f2bcd87792e8d8f02cce5bf..00958716f6be3d78d3d3816f7e76e0222b25b575 100644
|
| --- a/third_party/WebKit/Source/web/WebSurroundingText.cpp
|
| +++ b/third_party/WebKit/Source/web/WebSurroundingText.cpp
|
| @@ -47,7 +47,7 @@ void WebSurroundingText::initialize(const WebNode& webNode, const WebPoint& node
|
|
|
| void WebSurroundingText::initialize(const WebRange& webRange, size_t maxLength)
|
| {
|
| - if (RawPtr<Range> range = static_cast<RawPtr<Range>>(webRange))
|
| + if (Range* range = static_cast<Range*>(webRange))
|
| m_private.reset(new SurroundingText(*range, maxLength));
|
| }
|
|
|
|
|