| 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 cc76574c5445a42ccb9bf9e959943495f6cb5d5c..74c0d28aa3f07e3f0709d07da852b587a56cf502 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(end_index >= begin_index);
|
| + DCHECK_GE(end_index, begin_index);
|
| return end_index - begin_index;
|
| }
|
|
|
|
|