| 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 61f512eb16a34402bda8b39a8dcedb13ffe19300..416bc538715697a21333c77b991fdcb6f3425de5 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.cpp
|
| @@ -15,7 +15,7 @@ namespace blink {
|
|
|
| FrameViewAutoSizeInfo::FrameViewAutoSizeInfo(FrameView* view)
|
| : frame_view_(view), in_auto_size_(false), did_run_autosize_(false) {
|
| - ASSERT(frame_view_);
|
| + DCHECK(frame_view_);
|
| }
|
|
|
| DEFINE_TRACE(FrameViewAutoSizeInfo) {
|
| @@ -24,7 +24,7 @@ DEFINE_TRACE(FrameViewAutoSizeInfo) {
|
|
|
| void FrameViewAutoSizeInfo::ConfigureAutoSizeMode(const IntSize& min_size,
|
| const IntSize& max_size) {
|
| - ASSERT(!min_size.IsEmpty());
|
| + DCHECK(!min_size.IsEmpty());
|
| ASSERT(min_size.Width() <= max_size.Width());
|
| ASSERT(min_size.Height() <= max_size.Height());
|
|
|
|
|