| Index: third_party/WebKit/Source/core/layout/FloatingObjects.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/layout/FloatingObjects.cpp b/third_party/WebKit/Source/core/layout/FloatingObjects.cpp
 | 
| index 1c425fb71134e3a6dd1f77d09df92feaad2a90e4..096621c20710b141463344f2b94c5b16e2029e6a 100644
 | 
| --- a/third_party/WebKit/Source/core/layout/FloatingObjects.cpp
 | 
| +++ b/third_party/WebKit/Source/core/layout/FloatingObjects.cpp
 | 
| @@ -61,10 +61,10 @@ FloatingObject::FloatingObject(LayoutBox* layoutObject)
 | 
|  #endif
 | 
|  {
 | 
|    EFloat type = layoutObject->style()->floating();
 | 
| -  DCHECK_NE(type, EFloat::None);
 | 
| -  if (type == EFloat::Left)
 | 
| +  DCHECK_NE(type, EFloat::kNone);
 | 
| +  if (type == EFloat::kLeft)
 | 
|      m_type = FloatLeft;
 | 
| -  else if (type == EFloat::Right)
 | 
| +  else if (type == EFloat::kRight)
 | 
|      m_type = FloatRight;
 | 
|  }
 | 
|  
 | 
| 
 |