| Index: Source/WebCore/platform/PlatformTouchEvent.h
|
| diff --git a/Source/WebCore/platform/PlatformTouchEvent.h b/Source/WebCore/platform/PlatformTouchEvent.h
|
| index 8784da587b40288b8a77c8175926d752513b108a..89ca4ac8d29ce3963aaca2948b83b05fccf0ce77 100644
|
| --- a/Source/WebCore/platform/PlatformTouchEvent.h
|
| +++ b/Source/WebCore/platform/PlatformTouchEvent.h
|
| @@ -26,20 +26,6 @@
|
|
|
| #if ENABLE(TOUCH_EVENTS)
|
|
|
| -#if PLATFORM(QT)
|
| -QT_BEGIN_NAMESPACE
|
| -class QTouchEvent;
|
| -QT_END_NAMESPACE
|
| -#endif
|
| -
|
| -#if PLATFORM(BLACKBERRY)
|
| -namespace BlackBerry {
|
| -namespace Platform {
|
| -class TouchEvent;
|
| -};
|
| -};
|
| -#endif
|
| -
|
| namespace WebCore {
|
|
|
|
|
| @@ -56,27 +42,10 @@ public:
|
| {
|
| }
|
|
|
| -#if PLATFORM(BLACKBERRY)
|
| - explicit PlatformTouchEvent(BlackBerry::Platform::TouchEvent*);
|
| -#endif
|
| -
|
| const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints; }
|
|
|
| -#if PLATFORM(BLACKBERRY)
|
| - float rotation() const { return m_rotation; }
|
| - float scale() const { return m_scale; }
|
| - bool doubleTap() const { return m_doubleTap; }
|
| - bool touchHold() const { return m_touchHold; }
|
| -#endif
|
| -
|
| protected:
|
| Vector<PlatformTouchPoint> m_touchPoints;
|
| -#if PLATFORM(BLACKBERRY)
|
| - float m_rotation;
|
| - float m_scale;
|
| - bool m_doubleTap;
|
| - bool m_touchHold;
|
| -#endif
|
| };
|
|
|
| }
|
|
|