| Index: third_party/WebKit/Source/core/editing/SurroundingText.h
|
| diff --git a/third_party/WebKit/Source/core/editing/SurroundingText.h b/third_party/WebKit/Source/core/editing/SurroundingText.h
|
| index 2660fe38878cb2e012558bd3b98778eafe4cd93c..d53f7ed445f12d8e5b930c6c8145a2b194c2c2a6 100644
|
| --- a/third_party/WebKit/Source/core/editing/SurroundingText.h
|
| +++ b/third_party/WebKit/Source/core/editing/SurroundingText.h
|
| @@ -51,12 +51,12 @@ public:
|
| unsigned startOffsetInContent() const;
|
| unsigned endOffsetInContent() const;
|
|
|
| - PassRefPtrWillBeRawPtr<Range> rangeFromContentOffsets(unsigned startOffsetInContent, unsigned endOffsetInContent);
|
| + RawPtr<Range> rangeFromContentOffsets(unsigned startOffsetInContent, unsigned endOffsetInContent);
|
|
|
| private:
|
| void initialize(const Position&, const Position&, unsigned maxLength);
|
|
|
| - RefPtrWillBePersistent<Range> m_contentRange;
|
| + Persistent<Range> m_contentRange;
|
| size_t m_startOffsetInContent;
|
| size_t m_endOffsetInContent;
|
| };
|
|
|