| Index: Source/WebCore/dom/RangeBoundaryPoint.h
|
| ===================================================================
|
| --- Source/WebCore/dom/RangeBoundaryPoint.h (revision 101033)
|
| +++ Source/WebCore/dom/RangeBoundaryPoint.h (working copy)
|
| @@ -59,7 +59,7 @@
|
|
|
| RefPtr<Node> m_containerNode;
|
| mutable int m_offsetInContainer;
|
| - Node* m_childBeforeBoundary;
|
| + RefPtr<Node> m_childBeforeBoundary;
|
| };
|
|
|
| inline RangeBoundaryPoint::RangeBoundaryPoint(PassRefPtr<Node> container)
|
| @@ -77,7 +77,7 @@
|
|
|
| inline Node* RangeBoundaryPoint::childBefore() const
|
| {
|
| - return m_childBeforeBoundary;
|
| + return m_childBeforeBoundary.get();
|
| }
|
|
|
| inline void RangeBoundaryPoint::ensureOffsetIsValid() const
|
|
|