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

Unified Diff: third_party/WebKit/Source/core/animation/AnimationEffect.h

Issue 2043273002: Defer compositor keyframe snapshots until the next style resolve (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 5 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/AnimationEffect.h
diff --git a/third_party/WebKit/Source/core/animation/AnimationEffect.h b/third_party/WebKit/Source/core/animation/AnimationEffect.h
index ec6f673e98330f50cb69d1c254f0f2867f5fe6a1..fbe38472dda75333d493483925a9a63b0ddef732 100644
--- a/third_party/WebKit/Source/core/animation/AnimationEffect.h
+++ b/third_party/WebKit/Source/core/animation/AnimationEffect.h
@@ -83,6 +83,7 @@ public:
virtual ~AnimationEffect() { }
virtual bool isKeyframeEffect() const { return false; }
+ virtual bool isInertEffect() const { return false; }
Phase getPhase() const { return ensureCalculated().phase; }
bool isCurrent() const { return ensureCalculated().isCurrent; }

Powered by Google App Engine
This is Rietveld 408576698