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

Unified Diff: Source/core/layout/svg/LayoutSVGTransformableContainer.h

Issue 1337063002: Rename LayoutSVGTransformableContainer::m_lastTranslation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | Source/core/layout/svg/LayoutSVGTransformableContainer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGTransformableContainer.h
diff --git a/Source/core/layout/svg/LayoutSVGTransformableContainer.h b/Source/core/layout/svg/LayoutSVGTransformableContainer.h
index bcd2d189abf4394f6897796f026c184b03d9c3ff..3120c7fbbbd1b9cbe004a89002523f3fdfadcff9 100644
--- a/Source/core/layout/svg/LayoutSVGTransformableContainer.h
+++ b/Source/core/layout/svg/LayoutSVGTransformableContainer.h
@@ -34,7 +34,7 @@ public:
bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGTransformableContainer || LayoutSVGContainer::isOfType(type); }
const AffineTransform& localToParentTransform() const override { return m_localTransform; }
- const FloatSize& additionalTranslation() const { return m_lastTranslation; }
+ const FloatSize& additionalTranslation() const { return m_additionalTranslation; }
void setNeedsTransformUpdate() override { m_needsTransformUpdate = true; }
bool didTransformToRootUpdate() override { return m_didTransformToRootUpdate; }
@@ -46,7 +46,7 @@ private:
bool m_needsTransformUpdate : 1;
bool m_didTransformToRootUpdate : 1;
AffineTransform m_localTransform;
- FloatSize m_lastTranslation;
+ FloatSize m_additionalTranslation;
};
DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGTransformableContainer, isSVGTransformableContainer());
« no previous file with comments | « no previous file | Source/core/layout/svg/LayoutSVGTransformableContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698