| Index: third_party/WebKit/Source/core/layout/LayoutEmbeddedObject.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutEmbeddedObject.cpp b/third_party/WebKit/Source/core/layout/LayoutEmbeddedObject.cpp
|
| index e96868f362c65cc290ab212bb79b0316e2c2c4e9..c94b44b104803f19a89b72f6f59097cf8d0c86de 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutEmbeddedObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutEmbeddedObject.cpp
|
| @@ -169,11 +169,11 @@ CompositingReasons LayoutEmbeddedObject::additionalCompositingReasons() const
|
| return CompositingReasonNone;
|
| }
|
|
|
| -LayoutBox* LayoutEmbeddedObject::embeddedContentBox() const
|
| +LayoutReplaced* LayoutEmbeddedObject::embeddedReplacedContent() const
|
| {
|
| if (!node() || !widget() || !widget()->isFrameView())
|
| return nullptr;
|
| - return toFrameView(widget())->embeddedContentBox();
|
| + return toFrameView(widget())->embeddedReplacedContent();
|
| }
|
|
|
| } // namespace blink
|
|
|