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

Unified Diff: Source/core/frame/FrameView.cpp

Issue 210043008: Kill outlineBox (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Source/core/frame/FrameView.cpp
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
index 95f79cbc724c033eeb430f97c5e0db39788b65c4..e9ecc0fecd4ace2d0adc939d4e98b900a9f62275 100644
--- a/Source/core/frame/FrameView.cpp
+++ b/Source/core/frame/FrameView.cpp
@@ -1063,17 +1063,8 @@ void FrameView::repaintTree(RenderObject* root)
}
} else {
- LayoutRect oldOutlineRect;
- LayoutRect newOutlineRect;
-
- if (renderer->hasOutline()) {
- newOutlineRect = renderer->newOutlineRect();
- oldOutlineRect = renderer->oldOutlineRect();
- }
-
didFullRepaint = renderer->repaintAfterLayoutIfNeeded(renderer->containerForRepaint(),
- renderer->shouldDoFullRepaintAfterLayout(), oldRepaintRect, oldOutlineRect,
- &newRepaintRect, &newOutlineRect);
+ renderer->shouldDoFullRepaintAfterLayout(), oldRepaintRect, &newRepaintRect);
}
if (!didFullRepaint)

Powered by Google App Engine
This is Rietveld 408576698