OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "core/svg/SVGAnimatedString.h" | 5 #include "core/svg/SVGAnimatedString.h" |
6 | 6 |
| 7 #include "core/XLinkNames.h" |
| 8 #include "core/frame/UseCounter.h" |
| 9 #include "core/svg/SVGElement.h" |
| 10 |
7 namespace blink { | 11 namespace blink { |
8 | 12 |
9 String SVGAnimatedString::baseVal() | 13 String SVGAnimatedString::baseVal() |
10 { | 14 { |
| 15 if (this->attributeName() == XLinkNames::hrefAttr) |
| 16 UseCounter::count(this->contextElement()->document(), UseCounter::SVGHre
fBaseVal); |
11 return SVGAnimatedProperty<SVGString>::baseVal(); | 17 return SVGAnimatedProperty<SVGString>::baseVal(); |
12 } | 18 } |
13 | 19 |
14 void SVGAnimatedString::setBaseVal(const String& value, ExceptionState& exceptio
nState) | 20 void SVGAnimatedString::setBaseVal(String value, ExceptionState& exceptionState) |
15 { | 21 { |
| 22 if (this->attributeName() == XLinkNames::hrefAttr) |
| 23 UseCounter::count(this->contextElement()->document(), UseCounter::SVGHre
fBaseVal); |
16 return SVGAnimatedProperty<SVGString>::setBaseVal(value, exceptionState); | 24 return SVGAnimatedProperty<SVGString>::setBaseVal(value, exceptionState); |
17 } | 25 } |
18 | 26 |
19 String SVGAnimatedString::animVal() | 27 String SVGAnimatedString::animVal() |
20 { | 28 { |
| 29 if (this->attributeName() == XLinkNames::hrefAttr) |
| 30 UseCounter::count(this->contextElement()->document(), UseCounter::SVGHre
fAnimVal); |
21 return SVGAnimatedProperty<SVGString>::animVal(); | 31 return SVGAnimatedProperty<SVGString>::animVal(); |
22 } | 32 } |
23 | 33 |
24 } // namespace blink | 34 } // namespace blink |
OLD | NEW |