Chromium Code Reviews| Index: Source/core/dom/Range.h |
| diff --git a/Source/core/dom/Range.h b/Source/core/dom/Range.h |
| index 0de0a15d67b2050f6859dc25582eda027afa41a3..665d57d811b653768b579aee3ce662239542eb5f 100644 |
| --- a/Source/core/dom/Range.h |
| +++ b/Source/core/dom/Range.h |
| @@ -101,7 +101,7 @@ public: |
| void selectNode(Node*, ExceptionState& = ASSERT_NO_EXCEPTION); |
| void selectNodeContents(Node*, ExceptionState&); |
| void surroundContents(PassRefPtr<Node>, ExceptionState&); |
| - void setStartBefore(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(); } |
| @@ -156,7 +156,7 @@ private: |
| void setDocument(Document*); |
| Node* checkNodeWOffset(Node*, int offset, ExceptionState&) const; |
| - void checkNodeBA(Node*, ExceptionState&) const; |
| + void checkNodeBA(Node*, ExceptionState&, const char*) const; |
|
tkent
2013/08/26 22:37:41
It's hard to imagine what the "const char*" argume
yosin_UTC9
2013/08/27 02:18:55
Done.
|
| void checkDeleteExtract(ExceptionState&); |
| int maxStartOffset() const; |
| int maxEndOffset() const; |