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

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

Issue 2234683002: Remove EffectModel IDL interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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/ElementAnimation.h
diff --git a/third_party/WebKit/Source/core/animation/ElementAnimation.h b/third_party/WebKit/Source/core/animation/ElementAnimation.h
index ce647b91627a39318a71530b2d8a254f3d1200cd..4c1ad09982fed0ac5d6ca9b367e73b0be6f6fb26 100644
--- a/third_party/WebKit/Source/core/animation/ElementAnimation.h
+++ b/third_party/WebKit/Source/core/animation/ElementAnimation.h
@@ -31,7 +31,7 @@
#ifndef ElementAnimation_h
#define ElementAnimation_h
-#include "bindings/core/v8/EffectModelOrDictionarySequenceOrDictionary.h"
+#include "bindings/core/v8/DictionarySequenceOrDictionary.h"
#include "core/animation/DocumentTimeline.h"
#include "core/animation/EffectInput.h"
#include "core/animation/ElementAnimations.h"
@@ -50,7 +50,7 @@ class Dictionary;
class ElementAnimation {
STATIC_ONLY(ElementAnimation);
public:
- static Animation* animate(ExecutionContext* executionContext, Element& element, const EffectModelOrDictionarySequenceOrDictionary& effectInput, double duration, ExceptionState& exceptionState)
+ static Animation* animate(ExecutionContext* executionContext, Element& element, const DictionarySequenceOrDictionary& effectInput, double duration, ExceptionState& exceptionState)
{
EffectModel* effect = EffectInput::convert(&element, effectInput, executionContext, exceptionState);
if (exceptionState.hadException())
@@ -63,7 +63,7 @@ public:
return animateInternal(element, effect, timing);
}
- static Animation* animate(ExecutionContext* executionContext, Element& element, const EffectModelOrDictionarySequenceOrDictionary& effectInput, const KeyframeEffectOptions& options, ExceptionState& exceptionState)
+ static Animation* animate(ExecutionContext* executionContext, Element& element, const DictionarySequenceOrDictionary& effectInput, const KeyframeEffectOptions& options, ExceptionState& exceptionState)
{
EffectModel* effect = EffectInput::convert(&element, effectInput, executionContext, exceptionState);
if (exceptionState.hadException())
@@ -78,7 +78,7 @@ public:
return animation;
}
- static Animation* animate(ExecutionContext* executionContext, Element& element, const EffectModelOrDictionarySequenceOrDictionary& effectInput, ExceptionState& exceptionState)
+ static Animation* animate(ExecutionContext* executionContext, Element& element, const DictionarySequenceOrDictionary& effectInput, ExceptionState& exceptionState)
{
EffectModel* effect = EffectInput::convert(&element, effectInput, executionContext, exceptionState);
if (exceptionState.hadException())

Powered by Google App Engine
This is Rietveld 408576698