Changeset 161767 in webkit
- Timestamp:
- Jan 11, 2014, 8:58:36 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r161766 r161767 1 2014-01-11 Simon Fraser <simon.fraser@apple.com> 2 3 #ifdef out the contents of Touch* files for iOS. 4 5 * dom/Touch.h: 6 * dom/TouchEvent.h: 7 * dom/TouchList.h: 8 1 9 2014-01-11 Simon Fraser <simon.fraser@apple.com> 2 10 -
trunk/Source/WebCore/dom/Touch.h
r144877 r161767 27 27 #define Touch_h 28 28 29 #if ENABLE(TOUCH_EVENTS) 29 #if ENABLE(TOUCH_EVENTS) && !PLATFORM(IOS) 30 30 31 31 #include "EventTarget.h" -
trunk/Source/WebCore/dom/TouchEvent.h
r161662 r161767 28 28 #define TouchEvent_h 29 29 30 #if ENABLE(TOUCH_EVENTS) 30 #if ENABLE(TOUCH_EVENTS) && !PLATFORM(IOS) 31 31 32 32 #include "MouseRelatedEvent.h" -
trunk/Source/WebCore/dom/TouchList.h
r144877 r161767 27 27 #define TouchList_h 28 28 29 #if ENABLE(TOUCH_EVENTS) 29 #if ENABLE(TOUCH_EVENTS) && !PLATFORM(IOS) 30 30 31 31 #include "Touch.h"
Note:
See TracChangeset
for help on using the changeset viewer.