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

Unified Diff: Source/core/rendering/svg/RenderSVGContainer.h

Issue 731243002: Move m_paintInvalidationBoundingBox into RenderSVGModelObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Drop bitfield. Created 6 years, 1 month 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 | « no previous file | Source/core/rendering/svg/RenderSVGImage.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/svg/RenderSVGContainer.h
diff --git a/Source/core/rendering/svg/RenderSVGContainer.h b/Source/core/rendering/svg/RenderSVGContainer.h
index 2e87dab6992be92217ddc1a5ee7dffde1c556800..84cfd8d25e4a2521a1c0726b97ede2386ff5c151 100644
--- a/Source/core/rendering/svg/RenderSVGContainer.h
+++ b/Source/core/rendering/svg/RenderSVGContainer.h
@@ -47,7 +47,6 @@ public:
virtual bool didTransformToRootUpdate() { return false; }
bool isObjectBoundingBoxValid() const { return m_objectBoundingBoxValid; }
- virtual FloatRect paintInvalidationRectInLocalCoordinates() const override final { return m_paintInvalidationBoundingBox; }
bool selfWillPaint();
protected:
@@ -85,10 +84,9 @@ private:
RenderObjectChildList m_children;
FloatRect m_objectBoundingBox;
- bool m_objectBoundingBoxValid;
FloatRect m_strokeBoundingBox;
- FloatRect m_paintInvalidationBoundingBox;
- bool m_needsBoundariesUpdate : 1;
+ bool m_objectBoundingBoxValid;
+ bool m_needsBoundariesUpdate;
};
DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGContainer, isSVGContainer());
« no previous file with comments | « no previous file | Source/core/rendering/svg/RenderSVGImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698