Index: third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h |
diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h b/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h |
index 3fd65df7ef3be05a638be9e8d71ce56b1bacae95..0876714ca65d4f376c335db1610b9f4b0db381b4 100644 |
--- a/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h |
+++ b/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h |
@@ -37,7 +37,7 @@ struct PaintChunk { |
} |
size_t size() const { |
- ASSERT(endIndex >= beginIndex); |
+ DCHECK_GE(endIndex, beginIndex); |
return endIndex - beginIndex; |
} |