| Index: third_party/WebKit/Source/core/editing/PositionIterator.h
|
| diff --git a/third_party/WebKit/Source/core/editing/PositionIterator.h b/third_party/WebKit/Source/core/editing/PositionIterator.h
|
| index 8777b9771a08b91b82defe267aa92922c856b58d..6469ba1676989a7367d224779bb0e43fe2de989e 100644
|
| --- a/third_party/WebKit/Source/core/editing/PositionIterator.h
|
| +++ b/third_party/WebKit/Source/core/editing/PositionIterator.h
|
| @@ -74,8 +74,8 @@ private:
|
|
|
| bool isValid() const { return !m_anchorNode || m_domTreeVersion == m_anchorNode->document().domTreeVersion(); }
|
|
|
| - RawPtrWillBeMember<Node> m_anchorNode;
|
| - RawPtrWillBeMember<Node> m_nodeAfterPositionInAnchor; // If this is non-null, Strategy::parent(*m_nodeAfterPositionInAnchor) == m_anchorNode;
|
| + Member<Node> m_anchorNode;
|
| + Member<Node> m_nodeAfterPositionInAnchor; // If this is non-null, Strategy::parent(*m_nodeAfterPositionInAnchor) == m_anchorNode;
|
| int m_offsetInAnchor;
|
| size_t m_depthToAnchorNode;
|
| // If |m_nodeAfterPositionInAnchor| is not null,
|
|
|