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

Unified Diff: third_party/WebKit/Source/core/animation/InertEffect.cpp

Issue 2236583003: Rename AnimationEffect to AnimationEffectReadOnly (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@deprecated-assert
Patch Set: Rebase Created 4 years, 4 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/InertEffect.cpp
diff --git a/third_party/WebKit/Source/core/animation/InertEffect.cpp b/third_party/WebKit/Source/core/animation/InertEffect.cpp
index af0a60a221106eeb77f46f6b6b6cd96aa6fb28e9..55864f777ef92f46586b6f4d52f2028f66e32680 100644
--- a/third_party/WebKit/Source/core/animation/InertEffect.cpp
+++ b/third_party/WebKit/Source/core/animation/InertEffect.cpp
@@ -40,7 +40,7 @@ InertEffect* InertEffect::create(EffectModel* effect, const Timing& timing, bool
}
InertEffect::InertEffect(EffectModel* model, const Timing& timing, bool paused, double inheritedTime)
- : AnimationEffect(timing)
+ : AnimationEffectReadOnly(timing)
, m_model(model)
, m_paused(paused)
, m_inheritedTime(inheritedTime)
@@ -68,7 +68,7 @@ double InertEffect::calculateTimeToEffectChange(bool, double, double) const
DEFINE_TRACE(InertEffect)
{
visitor->trace(m_model);
- AnimationEffect::trace(visitor);
+ AnimationEffectReadOnly::trace(visitor);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/animation/InertEffect.h ('k') | third_party/WebKit/Source/core/animation/Keyframe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698