| Index: third_party/WebKit/Source/core/layout/LayoutVideo.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutVideo.cpp b/third_party/WebKit/Source/core/layout/LayoutVideo.cpp
|
| index 7c04530985119d4ff3801ab74874bbe0b6a7e542..c2fdb4af1966d057d762ab24fbd12ef94c14158f 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutVideo.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutVideo.cpp
|
| @@ -182,9 +182,9 @@ LayoutUnit LayoutVideo::computeReplacedLogicalWidth(ShouldComputePreferred shoul
|
| return LayoutReplaced::computeReplacedLogicalWidth(shouldComputePreferred);
|
| }
|
|
|
| -LayoutUnit LayoutVideo::computeReplacedLogicalHeight() const
|
| +LayoutUnit LayoutVideo::computeReplacedLogicalHeight(LayoutUnit estimatedUsedWidth) const
|
| {
|
| - return LayoutReplaced::computeReplacedLogicalHeight();
|
| + return LayoutReplaced::computeReplacedLogicalHeight(estimatedUsedWidth);
|
| }
|
|
|
| LayoutUnit LayoutVideo::minimumReplacedHeight() const
|
|
|