| Index: third_party/WebKit/Source/core/layout/ViewFragmentationContext.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/ViewFragmentationContext.cpp b/third_party/WebKit/Source/core/layout/ViewFragmentationContext.cpp
|
| index df0c5e22b8bedd34946d0fe307b6907ac93ef336..5ae95bf23e9f2fc3ceed2cd7b43b23460c575344 100644
|
| --- a/third_party/WebKit/Source/core/layout/ViewFragmentationContext.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/ViewFragmentationContext.cpp
|
| @@ -9,12 +9,12 @@
|
| namespace blink {
|
|
|
| bool ViewFragmentationContext::isFragmentainerLogicalHeightKnown() {
|
| - ASSERT(m_view.pageLogicalHeight());
|
| + DCHECK(m_view.pageLogicalHeight());
|
| return true;
|
| }
|
|
|
| LayoutUnit ViewFragmentationContext::fragmentainerLogicalHeightAt(LayoutUnit) {
|
| - ASSERT(m_view.pageLogicalHeight());
|
| + DCHECK(m_view.pageLogicalHeight());
|
| return m_view.pageLogicalHeight();
|
| }
|
|
|
|
|