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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGAnimatedString.cpp

Issue 1692673004: Revert of Add support for 'href' (w/o XLink NS) for various SVG elements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGAnimatedString.h ('k') | third_party/WebKit/Source/core/svg/SVGAttributeNames.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698