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

Unified Diff: Source/WebCore/dom/TouchEvent.cpp

Issue 13687007: Remove PLATFORM(BLACKBERRY) support. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months 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
Index: Source/WebCore/dom/TouchEvent.cpp
diff --git a/Source/WebCore/dom/TouchEvent.cpp b/Source/WebCore/dom/TouchEvent.cpp
index 238916af51fd99311055b78add961143824467d4..0c5c6dcd8f570fd57f3b549f47119148739e02ff 100644
--- a/Source/WebCore/dom/TouchEvent.cpp
+++ b/Source/WebCore/dom/TouchEvent.cpp
@@ -54,10 +54,6 @@ TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches,
, m_touches(touches)
, m_targetTouches(targetTouches)
, m_changedTouches(changedTouches)
-#if PLATFORM(BLACKBERRY)
- , m_touchHold(false)
- , m_doubleTap(false)
-#endif
{
}
@@ -84,11 +80,6 @@ void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches,
m_shiftKey = shiftKey;
m_metaKey = metaKey;
initCoordinates(IntPoint(clientX, clientY));
-#if PLATFORM(BLACKBERRY)
- m_doubleTap = false;
- m_touchHold = false;
-#endif
-
}
const AtomicString& TouchEvent::interfaceName() const

Powered by Google App Engine
This is Rietveld 408576698