| Index: third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.cpp b/third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.cpp
|
| index 416bc538715697a21333c77b991fdcb6f3425de5..b5dc829fd9d44858138f8e1a20bc6021f97e2da4 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.cpp
|
| @@ -25,8 +25,8 @@ DEFINE_TRACE(FrameViewAutoSizeInfo) {
|
| void FrameViewAutoSizeInfo::ConfigureAutoSizeMode(const IntSize& min_size,
|
| const IntSize& max_size) {
|
| DCHECK(!min_size.IsEmpty());
|
| - ASSERT(min_size.Width() <= max_size.Width());
|
| - ASSERT(min_size.Height() <= max_size.Height());
|
| + DCHECK_LE(min_size.Width(), max_size.Width());
|
| + DCHECK_LE(min_size.Height(), max_size.Height());
|
|
|
| if (min_auto_size_ == min_size && max_auto_size_ == max_size)
|
| return;
|
|
|