Chromium Code Reviews| Index: third_party/WebKit/Source/core/style/GridLength.h | 
| diff --git a/third_party/WebKit/Source/core/style/GridLength.h b/third_party/WebKit/Source/core/style/GridLength.h | 
| index 286c35968cddcfe69a27f5ac5be6a5c2b76ca630..3e1ab0eca9e391adfac1663f02dd47021708986a 100644 | 
| --- a/third_party/WebKit/Source/core/style/GridLength.h | 
| +++ b/third_party/WebKit/Source/core/style/GridLength.h | 
| @@ -53,12 +53,12 @@ class GridLength { | 
| bool isFlex() const { return m_type == FlexType; } | 
| const Length& length() const { | 
| - ASSERT(isLength()); | 
| + DCHECK(isLength()); | 
| return m_length; | 
| } | 
| double flex() const { | 
| - ASSERT(isFlex()); | 
| + DCHECK(isFlex()); | 
| return m_flex; | 
| } |