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

Unified Diff: Source/core/animation/Timing.h

Issue 814083003: Update animation when changes in animation keyframes are detected. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase + Address comments Created 5 years, 11 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
« no previous file with comments | « Source/core/animation/Animation.h ('k') | Source/core/animation/css/CSSAnimationUpdate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/Timing.h
diff --git a/Source/core/animation/Timing.h b/Source/core/animation/Timing.h
index 5c22403965eacca40ed48c39bf1b98579988ac9e..901674cdbada0fbe9cbb9bc5865b61ccd439ef92 100644
--- a/Source/core/animation/Timing.h
+++ b/Source/core/animation/Timing.h
@@ -93,7 +93,8 @@ struct Timing {
return startDelay == other.startDelay && endDelay == other.endDelay
&& fillMode == other.fillMode && iterationStart == other.iterationStart
&& iterationCount == other.iterationCount && iterationDuration == other.iterationDuration
- && playbackRate == other.playbackRate && direction == other.direction;
+ && playbackRate == other.playbackRate && direction == other.direction
+ && *timingFunction == *other.timingFunction;
}
bool operator!=(const Timing &other) const
« no previous file with comments | « Source/core/animation/Animation.h ('k') | Source/core/animation/css/CSSAnimationUpdate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698