Chromium Code Reviews| 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.
|