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

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

Issue 2086583004: Common up SVG transform "change detection" (classification) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 8af1ed32e423771b37ec75cbb1a7ad4479f86f9b..a445a2a52398b89a5e0f9735f5bf741aac28b975 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.h
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.h
@@ -28,6 +28,7 @@
namespace blink {
class SVGElement;
+enum class SVGTransformChange;
class LayoutSVGContainer : public LayoutSVGModelObject {
public:
@@ -70,17 +71,8 @@ protected:
bool nodeAtFloatPoint(HitTestResult&, const FloatPoint& pointInParent, HitTestAction) override;
- // The following enumeration is used to optimize cases where the scale is
- // known to be invariant (see: LayoutSVGContainer::layout). The value
- // 'Full' can be used in the general case when the scale change is unknown,
- // or known to change.
- enum class TransformChange {
- None,
- ScaleInvariant,
- Full,
- };
// Allow LayoutSVGTransformableContainer to hook in at the right time in layout().
- virtual TransformChange calculateLocalTransform() { return TransformChange::None; }
+ virtual SVGTransformChange calculateLocalTransform();
// Allow LayoutSVGViewportContainer to hook in at the right times in layout() and nodeAtFloatPoint().
virtual void calcViewport() { }
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/svg/LayoutSVGContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698