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

Unified Diff: Source/core/svg/SVGElement.h

Issue 177803003: [SVG] Make all C-macros used in the old property implementation NOOP. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: styles Created 6 years, 10 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 | « Source/core/svg/SVGDefsElement.cpp ('k') | Source/core/svg/SVGElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGElement.h
diff --git a/Source/core/svg/SVGElement.h b/Source/core/svg/SVGElement.h
index 0557f3b51651d67761aa3302051dfd5ccff4cbb0..94c50cd44cf35fbd24268a87ecce24dae3072dcd 100644
--- a/Source/core/svg/SVGElement.h
+++ b/Source/core/svg/SVGElement.h
@@ -185,25 +185,6 @@ protected:
void reportAttributeParsingError(SVGParsingError, const QualifiedName&, const AtomicString&);
bool hasFocusEventListeners() const;
- class CleanUpAnimatedPropertiesCaller {
- public:
- CleanUpAnimatedPropertiesCaller()
- : m_owner(0)
- {
- }
-
- ~CleanUpAnimatedPropertiesCaller()
- {
- ASSERT(m_owner);
- m_owner->cleanupAnimatedProperties();
- }
-
- void setOwner(SVGElement* owner) { m_owner = owner; }
-
- private:
- SVGElement* m_owner;
- };
-
private:
friend class SVGElementInstance;
@@ -232,7 +213,6 @@ private:
#if !ASSERT_DISABLED
bool m_inRelativeLengthClientsInvalidation;
#endif
- unsigned m_animatedPropertiesDestructed : 1;
unsigned m_isContextElement : 1;
unsigned m_hasSVGRareData : 1;
« no previous file with comments | « Source/core/svg/SVGDefsElement.cpp ('k') | Source/core/svg/SVGElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698