Index: third_party/WebKit/Source/core/style/SVGComputedStyle.cpp |
diff --git a/third_party/WebKit/Source/core/style/SVGComputedStyle.cpp b/third_party/WebKit/Source/core/style/SVGComputedStyle.cpp |
index fb074ed65d7841d263c31ab8cc7fbb0b0be36aaf..7f8a6a98b128a6f3464ca5b3ebf26f1e1a878969 100644 |
--- a/third_party/WebKit/Source/core/style/SVGComputedStyle.cpp |
+++ b/third_party/WebKit/Source/core/style/SVGComputedStyle.cpp |
@@ -248,7 +248,7 @@ unsigned paintOrderSequence(EPaintOrderType first, |
EPaintOrderType SVGComputedStyle::paintOrderType(unsigned index) const { |
unsigned pt = 0; |
- ASSERT(index < ((1 << kPaintOrderBitwidth) - 1)); |
+ DCHECK(index < ((1 << kPaintOrderBitwidth) - 1)); |
switch (this->paintOrder()) { |
case PaintOrderNormal: |
case PaintOrderFillStrokeMarkers: |