| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp
 | 
| index 9cd0ef208a15a8aa01a3b9f5effd352df7e97190..45253ee0d115ae055bc2285911a6db06d7b202bd 100644
 | 
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp
 | 
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp
 | 
| @@ -43,7 +43,7 @@ LayoutSVGContainer::LayoutSVGContainer(SVGElement* node)
 | 
|  LayoutSVGContainer::~LayoutSVGContainer() {}
 | 
|  
 | 
|  void LayoutSVGContainer::layout() {
 | 
| -  ASSERT(needsLayout());
 | 
| +  DCHECK(needsLayout());
 | 
|    LayoutAnalyzer::Scope analyzer(*this);
 | 
|  
 | 
|    // Update the local transform in subclasses.
 | 
| @@ -73,7 +73,7 @@ void LayoutSVGContainer::layout() {
 | 
|      LayoutSVGModelObject::setNeedsBoundariesUpdate();
 | 
|    }
 | 
|  
 | 
| -  ASSERT(!m_needsBoundariesUpdate);
 | 
| +  DCHECK(!m_needsBoundariesUpdate);
 | 
|    clearNeedsLayout();
 | 
|  }
 | 
|  
 | 
| 
 |