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

Unified Diff: Source/core/rendering/RenderView.cpp

Issue 775753002: Remove RenderFlowThread::offsetFromLogicalTopOfFirstRegion(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: code review Created 6 years 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
« no previous file with comments | « Source/core/rendering/RenderView.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderView.cpp
diff --git a/Source/core/rendering/RenderView.cpp b/Source/core/rendering/RenderView.cpp
index f1dd69171c271d229e9923c47799abe9cf683e28..74a91e6920be66e4777726aac910da48907ffa6d 100644
--- a/Source/core/rendering/RenderView.cpp
+++ b/Source/core/rendering/RenderView.cpp
@@ -831,22 +831,6 @@ void RenderView::setIsInWindow(bool isInWindow)
m_compositor->setIsInWindow(isInWindow);
}
-void RenderView::pushLayoutState(LayoutState& layoutState)
-{
- if (RenderFlowThread* currentFlowThread = layoutState.flowThread())
- currentFlowThread->pushFlowThreadLayoutState(layoutState.renderer());
- m_layoutState = &layoutState;
-}
-
-void RenderView::popLayoutState()
-{
- ASSERT(m_layoutState);
- RenderFlowThread* currentFlowThread = m_layoutState->flowThread();
- m_layoutState = m_layoutState->next();
- if (currentFlowThread)
- currentFlowThread->popFlowThreadLayoutState();
-}
-
IntervalArena* RenderView::intervalArena()
{
if (!m_intervalArena)
« no previous file with comments | « Source/core/rendering/RenderView.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698