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

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

Issue 1086873004: Add UseCounter for SVGURIReference.href.baseVal/animVal. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: move to SVGAnimatedString Created 5 years, 8 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/SVGAnimatedString.h
diff --git a/Source/core/svg/SVGAnimatedString.h b/Source/core/svg/SVGAnimatedString.h
index 636a04f18da4a333756201a26309f95deb9f8962..91d97591f85c15da652a0b5deb135fffe13d2d1d 100644
--- a/Source/core/svg/SVGAnimatedString.h
+++ b/Source/core/svg/SVGAnimatedString.h
@@ -44,6 +44,10 @@ public:
return adoptRefWillBeNoop(new SVGAnimatedString(contextElement, attributeName, initialValue));
}
+ WTF::String baseVal();
+ void setBaseVal(WTF::String, blink::ExceptionState&);
+ WTF::String animVal();
fs 2015/04/15 14:30:06 Why the need to namespace-qualify? (WTF:: and blin
Erik Dahlström (inactive) 2015/04/16 08:39:36 Copy-paste cruft, dropped.
+
protected:
SVGAnimatedString(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGString> initialValue)
: SVGAnimatedProperty<SVGString>(contextElement, attributeName, initialValue)

Powered by Google App Engine
This is Rietveld 408576698