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

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

Issue 210043008: Kill outlineBox (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaselined patch, hoping it would solve the bot failure I can't reproduce locally Created 6 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
« no previous file with comments | « Source/core/rendering/LayoutRectRecorder.cpp ('k') | Source/core/rendering/RenderBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/LayoutRepainter.cpp
diff --git a/Source/core/rendering/LayoutRepainter.cpp b/Source/core/rendering/LayoutRepainter.cpp
index 0e1f7791ce75f65c0d9aed0d2a2077bdb2f42991..a0e5762aeb0757420e42b46b6191177d5ae38ad2 100644
--- a/Source/core/rendering/LayoutRepainter.cpp
+++ b/Source/core/rendering/LayoutRepainter.cpp
@@ -46,7 +46,6 @@ LayoutRepainter::LayoutRepainter(RenderObject& object, bool checkForRepaint)
DisableCompositingQueryAsserts disabler;
m_oldBounds = m_object.clippedOverflowRectForRepaint(m_repaintContainer);
}
- m_oldOutlineBox = m_object.outlineBoundsForRepaint(m_repaintContainer);
}
}
@@ -58,7 +57,7 @@ bool LayoutRepainter::repaintAfterLayout()
// Hits in compositing/video/video-controls-layer-creation.html
DisableCompositingQueryAsserts disabler;
- return m_checkForRepaint ? m_object.repaintAfterLayoutIfNeeded(m_repaintContainer, m_object.selfNeedsLayout(), m_oldBounds, m_oldOutlineBox) : false;
+ return m_checkForRepaint ? m_object.repaintAfterLayoutIfNeeded(m_repaintContainer, m_object.selfNeedsLayout(), m_oldBounds) : false;
}
} // namespace WebCore
« no previous file with comments | « Source/core/rendering/LayoutRectRecorder.cpp ('k') | Source/core/rendering/RenderBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698