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

Unified Diff: third_party/WebKit/Source/core/svg/SVGURIReference.h

Issue 1681553002: 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: Remove invalid assert. 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698