Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(596)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutEmbeddedObject.cpp

Issue 1785123003: Rework embeddedContentBox into embeddedReplacedContent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutEmbeddedObject.h ('k') | third_party/WebKit/Source/core/layout/LayoutImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698