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

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

Issue 96283002: Web Animations API: Start implementation of Element.animate(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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 | Source/core/animation/AnimatedElement.cpp » ('j') | Source/core/animation/AnimatedElement.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimatedElement.h
diff --git a/Source/core/events/NavigatorEvents.h b/Source/core/animation/AnimatedElement.h
similarity index 88%
copy from Source/core/events/NavigatorEvents.h
copy to Source/core/animation/AnimatedElement.h
index 44cead911974797033b7bb3c2e674f6732dbe538..eb41cfb58d9e73174f7eb3d44fee8f3f632e8d16 100644
--- a/Source/core/events/NavigatorEvents.h
+++ b/Source/core/animation/AnimatedElement.h
@@ -28,18 +28,20 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef NavigatorEvents_h
-#define NavigatorEvents_h
+#ifndef AnimatedElement_h
dstockwell 2013/11/29 06:32:49 Upload with --no-find-copies
+#define AnimatedElement_h
+
+#include "bindings/v8/Dictionary.h"
+#include "core/css/CSSParser.h"
Steve Block 2013/11/29 07:31:19 Is this needed?
rjwright 2013/12/04 05:05:54 Done.
namespace WebCore {
-class Navigator;
+class AnimatedElement {
-class NavigatorEvents {
public:
- static long maxTouchPoints(Navigator*);
+ static void animate(Element*, Vector<Dictionary>);
Steve Block 2013/11/29 07:31:19 Should name the second param, as it's not obvious
rjwright 2013/12/04 05:05:54 Done.
};
} // namespace WebCore
-#endif // NavigatorEvents_h
+#endif
Steve Block 2013/11/29 07:31:19 // AnimatedElement_h
rjwright 2013/12/04 05:05:54 Done.
« no previous file with comments | « no previous file | Source/core/animation/AnimatedElement.cpp » ('j') | Source/core/animation/AnimatedElement.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698