Index: third_party/WebKit/Source/core/svg/SVGURIReference.h |
diff --git a/third_party/WebKit/Source/core/svg/SVGURIReference.h b/third_party/WebKit/Source/core/svg/SVGURIReference.h |
index b676bd33a1b6a394bf5786108b4f210598539907..dd29ecdfbcfe9430cce9aa8e60e1ae8a97a0a51e 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGURIReference.h |
+++ b/third_party/WebKit/Source/core/svg/SVGURIReference.h |
@@ -23,7 +23,7 @@ |
#include "core/CoreExport.h" |
#include "core/dom/Document.h" |
-#include "core/svg/SVGAnimatedString.h" |
+#include "core/svg/SVGAnimatedHref.h" |
#include "platform/heap/Handle.h" |
namespace blink { |
@@ -54,7 +54,7 @@ public: |
const String& hrefString() const { return m_href->currentValue()->value(); } |
// JS API |
- SVGAnimatedString* href() const { return m_href.get(); } |
+ SVGAnimatedHref* href() const { return m_href.get(); } |
DECLARE_VIRTUAL_TRACE(); |
@@ -62,7 +62,7 @@ protected: |
explicit SVGURIReference(SVGElement*); |
private: |
- RefPtrWillBeMember<SVGAnimatedString> m_href; |
+ RefPtrWillBeMember<SVGAnimatedHref> m_href; |
}; |
} // namespace blink |