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

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

Issue 1974323002: Move inlineElementContinuation() to LayoutBlockFlow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code review. Created 4 years, 7 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/LayoutBlock.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
index 862c3d8c5672d499912098c23b55bd2befce50c4..f9e81af183ceb78b17c1ee145bedf1623e529383 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
@@ -871,12 +871,6 @@ void LayoutBlock::paintObject(const PaintInfo& paintInfo, const LayoutPoint& pai
BlockPainter(*this).paintObject(paintInfo, paintOffset);
}
-LayoutInline* LayoutBlock::inlineElementContinuation() const
-{
- LayoutBoxModelObject* continuation = this->continuation();
- return continuation && continuation->isInline() ? toLayoutInline(continuation) : 0;
-}
-
bool LayoutBlock::isSelectionRoot() const
{
if (isPseudoElement())
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBlock.h ('k') | third_party/WebKit/Source/core/layout/LayoutBlockFlow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698