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

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

Issue 2047293002: Code cleanup: Replace Element with Document in element.animate() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_killForceConversionsToAnimatableValues
Patch Set: Fix unit test crash. 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/AnimationEffectTiming.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/animation/AnimationEffectTiming.h
diff --git a/third_party/WebKit/Source/core/animation/AnimationEffectTiming.h b/third_party/WebKit/Source/core/animation/AnimationEffectTiming.h
index 9a45fa905de321a2165ee5ce1a8418a6f262a7b8..dccbd5bce9ffa2331df84101540ab9d757b8c51c 100644
--- a/third_party/WebKit/Source/core/animation/AnimationEffectTiming.h
+++ b/third_party/WebKit/Source/core/animation/AnimationEffectTiming.h
@@ -13,6 +13,7 @@
namespace blink {
class ExceptionState;
+class ExecutionContext;
class UnrestrictedDoubleOrString;
class CORE_EXPORT AnimationEffectTiming : public GarbageCollected<AnimationEffectTiming>, public ScriptWrappable {
@@ -37,7 +38,7 @@ public:
void setDuration(const UnrestrictedDoubleOrString&, ExceptionState&);
void setPlaybackRate(double);
void setDirection(String);
- void setEasing(String, ExceptionState&);
+ void setEasing(ExecutionContext*, String, ExceptionState&);
DECLARE_TRACE();
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/AnimationEffectTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698