| Index: Source/core/layout/LayoutVideo.cpp
 | 
| diff --git a/Source/core/layout/LayoutVideo.cpp b/Source/core/layout/LayoutVideo.cpp
 | 
| index 3e0fd423c9541844a4cfadf3fabc0a95e7f912cc..8262328a23c65b67e2b095276fff3d8575455b0b 100644
 | 
| --- a/Source/core/layout/LayoutVideo.cpp
 | 
| +++ b/Source/core/layout/LayoutVideo.cpp
 | 
| @@ -183,17 +183,17 @@ void LayoutVideo::updatePlayer()
 | 
|  
 | 
|  LayoutUnit LayoutVideo::computeReplacedLogicalWidth(ShouldComputePreferred shouldComputePreferred) const
 | 
|  {
 | 
| -    return RenderReplaced::computeReplacedLogicalWidth(shouldComputePreferred);
 | 
| +    return LayoutReplaced::computeReplacedLogicalWidth(shouldComputePreferred);
 | 
|  }
 | 
|  
 | 
|  LayoutUnit LayoutVideo::computeReplacedLogicalHeight() const
 | 
|  {
 | 
| -    return RenderReplaced::computeReplacedLogicalHeight();
 | 
| +    return LayoutReplaced::computeReplacedLogicalHeight();
 | 
|  }
 | 
|  
 | 
|  LayoutUnit LayoutVideo::minimumReplacedHeight() const
 | 
|  {
 | 
| -    return RenderReplaced::minimumReplacedHeight();
 | 
| +    return LayoutReplaced::minimumReplacedHeight();
 | 
|  }
 | 
|  
 | 
|  bool LayoutVideo::supportsAcceleratedRendering() const
 | 
| 
 |