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

Unified Diff: third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h

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/animation/SVGSMILElement.h
diff --git a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
index 69210459be3136d56ecece7e6cd5b5358b4aa62b..9da262aec81ba00e4b9a8eb8617605240191dd92 100644
--- a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
+++ b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
@@ -59,7 +59,7 @@ public:
virtual bool hasValidAttributeName();
virtual void animationAttributeChanged() = 0;
- SMILTimeContainer* timeContainer() const { return m_timeContainer.get(); }
+ SMILTimeContainer* timeContainer() const;
SVGElement* targetElement() const { return m_targetElement; }
const QualifiedName& attributeName() const { return m_attributeName; }
@@ -199,7 +199,7 @@ private:
int repeat() const { return m_repeat; }
SVGSMILElement* syncBase() const { return m_syncBase.get(); }
void setSyncBase(SVGSMILElement* element) { m_syncBase = element; }
- ConditionEventListener* eventListener() const { return m_eventListener.get(); }
+ ConditionEventListener* eventListener() const;
void setEventListener(PassRefPtrWillBeRawPtr<ConditionEventListener>);
private:

Powered by Google App Engine
This is Rietveld 408576698