diff options
author | Ben Murdoch <benm@google.com> | 2010-02-18 14:14:10 +0000 |
---|---|---|
committer | Ben Murdoch <benm@google.com> | 2010-02-18 14:17:49 +0000 |
commit | 4e022cc0147f87a6c54633e7f467bf4ec03fba5d (patch) | |
tree | 1ba6048b9addc512c1ddaef590506c62ded25abd /WebCore/bindings | |
parent | 605792ded8a6f75c07543f477e8724d187b34070 (diff) | |
download | external_webkit-4e022cc0147f87a6c54633e7f467bf4ec03fba5d.zip external_webkit-4e022cc0147f87a6c54633e7f467bf4ec03fba5d.tar.gz external_webkit-4e022cc0147f87a6c54633e7f467bf4ec03fba5d.tar.bz2 |
Update touch event bindings for V8 in V8Index.cpp to match what landed to webkit.org in https://bugs.webkit.org/show_bug.cgi?id=35094
Change-Id: Id8bfd38800bf38de704efbad3afe9b8e53367d13
Diffstat (limited to 'WebCore/bindings')
-rw-r--r-- | WebCore/bindings/v8/V8Index.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/WebCore/bindings/v8/V8Index.cpp b/WebCore/bindings/v8/V8Index.cpp index 1053f19..19da75a 100644 --- a/WebCore/bindings/v8/V8Index.cpp +++ b/WebCore/bindings/v8/V8Index.cpp @@ -161,6 +161,9 @@ #include "V8StyleSheet.h" #include "V8Text.h" #include "V8TextEvent.h" +#include "V8Touch.h" +#include "V8TouchEvent.h" +#include "V8TouchList.h" #include "V8DOMCoreException.h" #include "V8DOMParser.h" #include "V8DOMWindow.h" @@ -464,13 +467,6 @@ #if PLATFORM(ANDROID) #include "V8Connection.h" -// TODO: Upstream these guards to webkit.org -#if ENABLE(TOUCH_EVENTS) -#include "V8Touch.h" -#include "V8TouchList.h" -#include "V8TouchEvent.h" -#endif - #include "V8VoidCallback.h" #endif // PLATFORM(ANDROID) |