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

Unified Diff: Source/core/svg/SVGViewElement.cpp

Issue 168923002: Drop [LegacyImplementedInBaseClass] from SVGZoomAndSpan 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
« no previous file with comments | « Source/core/svg/SVGViewElement.h ('k') | Source/core/svg/SVGViewSpec.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGViewElement.cpp
diff --git a/Source/core/svg/SVGViewElement.cpp b/Source/core/svg/SVGViewElement.cpp
index 08fb4804870854c2535d1fc50e1609270eaf704c..876e10e21ad7d982154e058c649df54004dea8bf 100644
--- a/Source/core/svg/SVGViewElement.cpp
+++ b/Source/core/svg/SVGViewElement.cpp
@@ -35,7 +35,6 @@ inline SVGViewElement::SVGViewElement(Document& document)
, m_viewBox(SVGAnimatedRect::create(this, SVGNames::viewBoxAttr))
, m_preserveAspectRatio(SVGAnimatedPreserveAspectRatio::create(this, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio::create()))
, m_viewTarget(SVGStaticStringList::create(this, SVGNames::viewTargetAttr))
- , m_zoomAndPan(SVGZoomAndPanMagnify)
{
ScriptWrappable::init(this);
@@ -70,7 +69,7 @@ void SVGViewElement::parseAttribute(const QualifiedName& name, const AtomicStrin
if (SVGFitToViewBox::parseAttribute(this, name, value))
return;
- if (SVGZoomAndPan::parseAttribute(this, name, value))
+ if (SVGZoomAndPan::parseAttribute(name, value))
return;
SVGParsingError parseError = NoError;
« no previous file with comments | « Source/core/svg/SVGViewElement.h ('k') | Source/core/svg/SVGViewSpec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698