| Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h b/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h
|
| index cb7af888ee1d12930b3b77f5b4d33c9c1a91811b..69d04570510f9311d02c16038e32b708bf2da1ce 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h
|
| @@ -227,8 +227,8 @@ class PLATFORM_EXPORT DisplayItem {
|
| {
|
| // derivedSize must fit in m_derivedSize.
|
| // If it doesn't, enlarge m_derivedSize and fix this assert.
|
| - ASSERT_WITH_SECURITY_IMPLICATION(derivedSize < (1 << 8));
|
| - ASSERT_WITH_SECURITY_IMPLICATION(derivedSize >= sizeof(*this));
|
| + SECURITY_DCHECK(derivedSize < (1 << 8));
|
| + SECURITY_DCHECK(derivedSize >= sizeof(*this));
|
| }
|
|
|
| virtual ~DisplayItem() {}
|
|
|