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

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

Issue 169033002: Drop [LegacyImplementedInBaseClass] from SVGFitToViewBox IDL interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Further refactoring 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
Index: Source/core/svg/SVGViewSpec.h
diff --git a/Source/core/svg/SVGViewSpec.h b/Source/core/svg/SVGViewSpec.h
index effdea0af688f1402b845af9f8de30a5cac87d6d..28b2698446219399be67115f0b67adeece6a3244 100644
--- a/Source/core/svg/SVGViewSpec.h
+++ b/Source/core/svg/SVGViewSpec.h
@@ -21,8 +21,6 @@
#define SVGViewSpec_h
#include "bindings/v8/ScriptWrappable.h"
-#include "core/svg/SVGAnimatedPreserveAspectRatio.h"
-#include "core/svg/SVGAnimatedRect.h"
#include "core/svg/SVGFitToViewBox.h"
#include "core/svg/SVGSVGElement.h"
#include "core/svg/SVGTransformList.h"
@@ -70,9 +68,6 @@ public:
SVGTransformListPropertyTearOff* transform();
SVGTransformList transformBaseValue() const { return m_transform; }
- SVGAnimatedRect* viewBox() { return m_viewBox.get(); }
- SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAspectRatio.get(); }
-
private:
explicit SVGViewSpec(SVGSVGElement*);
@@ -90,8 +85,6 @@ private:
SVGZoomAndPanType m_zoomAndPan;
SVGTransformList m_transform;
- RefPtr<SVGAnimatedRect> m_viewBox;
- RefPtr<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
String m_viewTargetString;
};

Powered by Google App Engine
This is Rietveld 408576698