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

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

Issue 1996283002: Animation: Declare explicit specialization of VectorTraits before use (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename Created 4 years, 7 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 | « third_party/WebKit/Source/core/animation/css/CSSAnimationUpdate.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 58a8c92fd2c0ab6067a87f5520a6e4e3b8a3c3a9..cc3f51ff1aca29b3e346e51bc77e677c5bc77812 100644
--- a/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
+++ b/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
@@ -81,7 +81,7 @@ public:
private:
class RunningAnimation final : public GarbageCollectedFinalized<RunningAnimation> {
public:
- RunningAnimation(Animation* animation, CSSAnimationUpdate::NewAnimation newAnimation)
+ RunningAnimation(Animation* animation, NewCSSAnimation newAnimation)
: animation(animation)
, name(newAnimation.name)
, nameIndex(newAnimation.nameIndex)
@@ -91,7 +91,7 @@ private:
{
}
- void update(CSSAnimationUpdate::UpdatedAnimation update)
+ void update(UpdatedCSSAnimation update)
{
ASSERT(update.animation == animation);
styleRule = update.styleRule;
« no previous file with comments | « third_party/WebKit/Source/core/animation/css/CSSAnimationUpdate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698