| Index: third_party/WebKit/Source/core/svg/SVGParsingError.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGParsingError.h b/third_party/WebKit/Source/core/svg/SVGParsingError.h
|
| index b0f4a35959c31f745aaebf6cd6f88385c53349aa..4777d02266b0bf5a5e55e502eb8916214c12640f 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGParsingError.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGParsingError.h
|
| @@ -68,7 +68,7 @@ class SVGParsingError {
|
| SVGParsingError(SVGParseStatus status = SVGParseStatus::NoError,
|
| size_t locus = 0)
|
| : m_status(static_cast<unsigned>(status)), m_locus(checkLocus(locus)) {
|
| - ASSERT(this->status() == status);
|
| + DCHECK_EQ(this->status(), status);
|
| }
|
|
|
| SVGParseStatus status() const {
|
|
|