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

Unified Diff: third_party/WebKit/Source/core/animation/css/CSSAnimations.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/animation/css/CSSAnimations.h
diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimations.h b/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
index 45830cf7b88be0c6c980a286768d20f91950eeb8..58a8c92fd2c0ab6067a87f5520a6e4e3b8a3c3a9 100644
--- a/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
+++ b/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
@@ -109,7 +109,7 @@ private:
AtomicString name;
size_t nameIndex;
Timing specifiedTiming;
- RefPtrWillBeMember<StyleRuleKeyframes> styleRule;
+ Member<StyleRuleKeyframes> styleRule;
unsigned styleRuleVersion;
};
@@ -164,7 +164,7 @@ private:
Document& document() const { return m_animationTarget->document(); }
void maybeDispatch(Document::ListenerType, const AtomicString& eventName, double elapsedTime);
- RawPtrWillBeMember<Element> m_animationTarget;
+ Member<Element> m_animationTarget;
const AtomicString m_name;
AnimationEffect::Phase m_previousPhase;
double m_previousIteration;
@@ -188,7 +188,7 @@ private:
PseudoId getPseudoId() const { return m_transitionTarget->getPseudoId(); }
Document& document() const { return m_transitionTarget->document(); }
- RawPtrWillBeMember<Element> m_transitionTarget;
+ Member<Element> m_transitionTarget;
const CSSPropertyID m_property;
AnimationEffect::Phase m_previousPhase;
};

Powered by Google App Engine
This is Rietveld 408576698