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

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, 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/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 7529699fb45f21b672d05f08224b4c14b52ca5f0..07113dc360cca02b39c74a687764298922963b78 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;
};
@@ -162,7 +162,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;
@@ -186,7 +186,7 @@ private:
PseudoId pseudoId() const { return m_transitionTarget->pseudoId(); }
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