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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.h

Issue 1996543002: Avoid using forced layout to trigger paint invalidation for SVG containers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use enum instead of bitfield Created 4 years, 6 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: third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.h
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.h b/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.h
index b3e1fee76f54b0702a8245d1e07258392ff4c978..703c1a6e9bb7e8d715868037687148e6248b327d 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.h
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.h
@@ -70,8 +70,13 @@ protected:
bool nodeAtFloatPoint(HitTestResult&, const FloatPoint& pointInParent, HitTestAction) override;
+ enum class TransformChange {
pdr. 2016/06/21 00:13:04 WDYT of adding a small comment here? The enum appr
fs 2016/06/21 08:24:45 Comment added.
+ None,
+ ScaleInvariant,
+ Full,
+ };
// Allow LayoutSVGTransformableContainer to hook in at the right time in layout().
- virtual bool calculateLocalTransform() { return false; }
+ virtual TransformChange calculateLocalTransform() { return TransformChange::None; }
// Allow LayoutSVGViewportContainer to hook in at the right times in layout() and nodeAtFloatPoint().
virtual void calcViewport() { }
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698