| Index: third_party/WebKit/Source/core/layout/line/RootInlineBox.h
 | 
| diff --git a/third_party/WebKit/Source/core/layout/line/RootInlineBox.h b/third_party/WebKit/Source/core/layout/line/RootInlineBox.h
 | 
| index 1567b093eb95d099a69653b8dddde0c925aafc8e..98bcb74ae7ee2cf180bd01933e20b91dfe8e30e7 100644
 | 
| --- a/third_party/WebKit/Source/core/layout/line/RootInlineBox.h
 | 
| +++ b/third_party/WebKit/Source/core/layout/line/RootInlineBox.h
 | 
| @@ -158,7 +158,7 @@ class RootInlineBox : public InlineFlowBox {
 | 
|        bool onlyEditableLeaves = false);
 | 
|  
 | 
|    void appendFloat(LayoutBox* floatingBox) {
 | 
| -    ASSERT(!isDirty());
 | 
| +    DCHECK(!isDirty());
 | 
|      if (m_floats)
 | 
|        m_floats->push_back(floatingBox);
 | 
|      else
 | 
| @@ -166,7 +166,7 @@ class RootInlineBox : public InlineFlowBox {
 | 
|    }
 | 
|  
 | 
|    Vector<LayoutBox*>* floatsPtr() {
 | 
| -    ASSERT(!isDirty());
 | 
| +    DCHECK(!isDirty());
 | 
|      return m_floats.get();
 | 
|    }
 | 
|  
 | 
| 
 |