| Index: third_party/WebKit/Source/core/dom/DocumentParser.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DocumentParser.h b/third_party/WebKit/Source/core/dom/DocumentParser.h
|
| index 58b48b5cdaf7c4fa30f3f08169d7f228831818dd..c09b37518c8c178e1219cb7fa3a533c5070f7a3e 100644
|
| --- a/third_party/WebKit/Source/core/dom/DocumentParser.h
|
| +++ b/third_party/WebKit/Source/core/dom/DocumentParser.h
|
| @@ -62,7 +62,7 @@ public:
|
| virtual void finish() = 0;
|
|
|
| // document() will return 0 after detach() is called.
|
| - Document* document() const { ASSERT(m_document); return m_document; }
|
| + Document* document() const { DCHECK(m_document); return m_document; }
|
|
|
| bool isParsing() const { return m_state == ParsingState; }
|
| bool isStopping() const { return m_state == StoppingState; }
|
|
|