| Index: Source/web/WebRange.cpp
|
| diff --git a/Source/web/WebRange.cpp b/Source/web/WebRange.cpp
|
| index c43eed396c1bdfd670445cd10284eb40a5e7cdad..e30eff8aaf1d1159384c5b6ed2e80750d659b197 100644
|
| --- a/Source/web/WebRange.cpp
|
| +++ b/Source/web/WebRange.cpp
|
| @@ -75,7 +75,7 @@ int WebRange::endOffset() const
|
| WebNode WebRange::startContainer(WebExceptionCode& exceptionCode) const
|
| {
|
| // FIXME: Create a wrapper class that just sets the internal int.
|
| - RefPtr<Node> node(m_private->startContainer());
|
| + RefPtrWillBeRawPtr<Node> node(m_private->startContainer());
|
| exceptionCode = 0;
|
| return node.release();
|
| }
|
| @@ -83,7 +83,7 @@ WebNode WebRange::startContainer(WebExceptionCode& exceptionCode) const
|
| WebNode WebRange::endContainer(WebExceptionCode& exceptionCode) const
|
| {
|
| // FIXME: Create a wrapper class that just sets the internal int.
|
| - RefPtr<Node> node(m_private->endContainer());
|
| + RefPtrWillBeRawPtr<Node> node(m_private->endContainer());
|
| exceptionCode = 0;
|
| return node.release();
|
| }
|
|
|