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

Unified Diff: third_party/WebKit/Source/core/animation/AnimationInputHelpers.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
Index: third_party/WebKit/Source/core/animation/AnimationInputHelpers.h
diff --git a/third_party/WebKit/Source/core/animation/AnimationInputHelpers.h b/third_party/WebKit/Source/core/animation/AnimationInputHelpers.h
index ff4f3baf921cea5209d5348ce20cc8103a694d1e..52f3227fae038b90803ac8d0ef011312bd447623 100644
--- a/third_party/WebKit/Source/core/animation/AnimationInputHelpers.h
+++ b/third_party/WebKit/Source/core/animation/AnimationInputHelpers.h
@@ -22,9 +22,9 @@ class CORE_EXPORT AnimationInputHelpers {
STATIC_ONLY(AnimationInputHelpers);
public:
static CSSPropertyID keyframeAttributeToCSSProperty(const String&, const Document&);
- static CSSPropertyID keyframeAttributeToPresentationAttribute(const String&, const Element&);
- static const QualifiedName* keyframeAttributeToSVGAttribute(const String&, Element&);
- static PassRefPtr<TimingFunction> parseTimingFunction(const String&, Document*, ExceptionState&);
+ static CSSPropertyID keyframeAttributeToPresentationAttribute(const String&);
+ static const QualifiedName* keyframeAttributeToSVGAttribute(const String&);
+ static PassRefPtr<TimingFunction> parseTimingFunction(const String&, Document&, ExceptionState&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698