| Index: Source/core/dom/Range.cpp
|
| diff --git a/Source/core/dom/Range.cpp b/Source/core/dom/Range.cpp
|
| index ae987935b95bca4f3fecb9176a0bd5425c086cf3..e777350724f99d3ecc62789be5dc047c97a7e8cc 100644
|
| --- a/Source/core/dom/Range.cpp
|
| +++ b/Source/core/dom/Range.cpp
|
| @@ -1630,7 +1630,7 @@ void Range::expand(const String& unit, ExceptionState& exceptionState)
|
| setEnd(end.deepEquivalent().containerNode(), end.deepEquivalent().computeOffsetInContainerNode(), exceptionState);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<ClientRectList> Range::getClientRects() const
|
| +ClientRectList* Range::getClientRects() const
|
| {
|
| m_ownerDocument->updateLayoutIgnorePendingStylesheets();
|
|
|
| @@ -1640,7 +1640,7 @@ PassRefPtrWillBeRawPtr<ClientRectList> Range::getClientRects() const
|
| return ClientRectList::create(quads);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<ClientRect> Range::getBoundingClientRect() const
|
| +ClientRect* Range::getBoundingClientRect() const
|
| {
|
| return ClientRect::create(boundingRect());
|
| }
|
|
|