| Index: third_party/WebKit/Source/core/dom/Range.h
|
| diff --git a/third_party/WebKit/Source/core/dom/Range.h b/third_party/WebKit/Source/core/dom/Range.h
|
| index 0a8bed0a1df604c58ae4e578a2d3e0c4ba19758f..70aee6383ce41ebfbf50432b41ef500ca6c56f69 100644
|
| --- a/third_party/WebKit/Source/core/dom/Range.h
|
| +++ b/third_party/WebKit/Source/core/dom/Range.h
|
| @@ -113,8 +113,8 @@ public:
|
| void surroundContents(PassRefPtrWillBeRawPtr<Node>, ExceptionState&);
|
| void setStartBefore(Node*, ExceptionState& = ASSERT_NO_EXCEPTION);
|
|
|
| - const Position startPosition() const { return m_start.toPosition(); }
|
| - const Position endPosition() const { return m_end.toPosition(); }
|
| + const Position& startPosition() const { return m_start.toPosition(); }
|
| + const Position& endPosition() const { return m_end.toPosition(); }
|
| void setStart(const Position&, ExceptionState& = ASSERT_NO_EXCEPTION);
|
| void setEnd(const Position&, ExceptionState& = ASSERT_NO_EXCEPTION);
|
|
|
|
|