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

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

Issue 171333003: Pass implementation object to supplemental classes by reference (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 10 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: Source/core/animation/ElementAnimation.h
diff --git a/Source/core/animation/ElementAnimation.h b/Source/core/animation/ElementAnimation.h
index 66921a4223d34271c71455f5fa8fea5f81ec1dd8..a27a0f34f453880028b8c8a2a8b968438f7bfa9c 100644
--- a/Source/core/animation/ElementAnimation.h
+++ b/Source/core/animation/ElementAnimation.h
@@ -41,9 +41,9 @@ class Element;
class ElementAnimation {
public:
- static Animation* animate(Element*, Vector<Dictionary> keyframesDictionaryVector, Dictionary timingInput);
- static Animation* animate(Element*, Vector<Dictionary> keyframesDictionaryVector, double timingInput);
- static Animation* animate(Element*, Vector<Dictionary> keyframesDictionaryVector);
+ static Animation* animate(Element&, Vector<Dictionary> keyframesDictionaryVector, Dictionary timingInput);
+ static Animation* animate(Element&, Vector<Dictionary> keyframesDictionaryVector, double timingInput);
+ static Animation* animate(Element&, Vector<Dictionary> keyframesDictionaryVector);
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698