| Index: third_party/WebKit/Source/core/svg/SVGViewElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGViewElement.cpp b/third_party/WebKit/Source/core/svg/SVGViewElement.cpp
|
| index 45c5126abd921c1aaab38b08d25ae73a59a233a2..9e21340a9b42f4397415b6ef26fd8769b0b84305 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGViewElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGViewElement.cpp
|
| @@ -20,7 +20,9 @@
|
|
|
| #include "core/svg/SVGViewElement.h"
|
|
|
| +#include "core/SVGNames.h"
|
| #include "core/frame/UseCounter.h"
|
| +#include "core/svg/SVGStaticStringList.h"
|
|
|
| namespace blink {
|
|
|
| @@ -42,6 +44,11 @@ DEFINE_TRACE(SVGViewElement)
|
| SVGFitToViewBox::trace(visitor);
|
| }
|
|
|
| +SVGStringListTearOff* SVGViewElement::viewTarget()
|
| +{
|
| + return m_viewTarget->tearOff();
|
| +}
|
| +
|
| void SVGViewElement::parseAttribute(const QualifiedName& name, const AtomicString& oldValue, const AtomicString& value)
|
| {
|
| if (SVGZoomAndPan::parseAttribute(name, value))
|
|
|