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

Unified Diff: third_party/WebKit/Source/core/svg/SVGElementRareData.cpp

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CORE_EXPORT Created 5 years, 1 month 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/SVGElementRareData.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGElementRareData.cpp b/third_party/WebKit/Source/core/svg/SVGElementRareData.cpp
index e3119af19daa6a8df9a1b989df192e4cd4ec7be5..f9edbfdae929d89c6bd4e78dcd50b550371b78e0 100644
--- a/third_party/WebKit/Source/core/svg/SVGElementRareData.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGElementRareData.cpp
@@ -13,6 +13,26 @@
namespace blink {
+SVGCursorElement* SVGElementRareData::cursorElement() const
+{
+ return m_cursorElement;
+}
+
+void SVGElementRareData::setCursorElement(SVGCursorElement* cursorElement)
+{
+ m_cursorElement = cursorElement;
+}
+
+CSSCursorImageValue* SVGElementRareData::cursorImageValue() const
+{
+ return m_cursorImageValue;
+}
+
+void SVGElementRareData::setCursorImageValue(CSSCursorImageValue* cursorImageValue)
+{
+ m_cursorImageValue = cursorImageValue;
+}
+
MutableStylePropertySet* SVGElementRareData::ensureAnimatedSMILStyleProperties()
{
if (!m_animatedSMILStyleProperties)
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGElementRareData.h ('k') | third_party/WebKit/Source/core/svg/SVGSVGElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698