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

Side by Side Diff: Source/core/rendering/svg/RenderSVGBlock.cpp

Issue 247583003: Revert of Separate repaint and layout requirements of StyleDifference (Step 1) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Local revert Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. 2 * Copyright (C) 2006 Apple Computer, Inc.
3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 } 71 }
72 72
73 void RenderSVGBlock::willBeDestroyed() 73 void RenderSVGBlock::willBeDestroyed()
74 { 74 {
75 SVGResourcesCache::clientDestroyed(this); 75 SVGResourcesCache::clientDestroyed(this);
76 RenderBlockFlow::willBeDestroyed(); 76 RenderBlockFlow::willBeDestroyed();
77 } 77 }
78 78
79 void RenderSVGBlock::styleDidChange(StyleDifference diff, const RenderStyle* old Style) 79 void RenderSVGBlock::styleDidChange(StyleDifference diff, const RenderStyle* old Style)
80 { 80 {
81 if (diff.needsFullLayout()) 81 if (diff == StyleDifferenceLayout)
82 setNeedsBoundariesUpdate(); 82 setNeedsBoundariesUpdate();
83 83
84 RenderBlock::styleDidChange(diff, oldStyle); 84 RenderBlock::styleDidChange(diff, oldStyle);
85 SVGResourcesCache::clientStyleChanged(this, diff, style()); 85 SVGResourcesCache::clientStyleChanged(this, diff, style());
86 } 86 }
87 87
88 void RenderSVGBlock::mapLocalToContainer(const RenderLayerModelObject* repaintCo ntainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) co nst 88 void RenderSVGBlock::mapLocalToContainer(const RenderLayerModelObject* repaintCo ntainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) co nst
89 { 89 {
90 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState , wasFixed); 90 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState , wasFixed);
91 } 91 }
(...skipping 13 matching lines...) Expand all
105 SVGRenderSupport::computeFloatRectForRepaint(this, repaintContainer, repaint Rect, fixed); 105 SVGRenderSupport::computeFloatRectForRepaint(this, repaintContainer, repaint Rect, fixed);
106 } 106 }
107 107
108 bool RenderSVGBlock::nodeAtPoint(const HitTestRequest&, HitTestResult&, const Hi tTestLocation&, const LayoutPoint&, HitTestAction) 108 bool RenderSVGBlock::nodeAtPoint(const HitTestRequest&, HitTestResult&, const Hi tTestLocation&, const LayoutPoint&, HitTestAction)
109 { 109 {
110 ASSERT_NOT_REACHED(); 110 ASSERT_NOT_REACHED();
111 return false; 111 return false;
112 } 112 }
113 113
114 } 114 }
OLDNEW
« no previous file with comments | « Source/core/rendering/style/StyleDifference.h ('k') | Source/core/rendering/svg/RenderSVGGradientStop.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698