OSDN Git Service

b/3039749 resolving the conflicts for WebKit.
authorHuahui Wu <hwu@google.com>
Mon, 4 Oct 2010 22:23:22 +0000 (15:23 -0700)
committerHuahui Wu <hwu@google.com>
Mon, 4 Oct 2010 22:23:22 +0000 (15:23 -0700)
Change-Id: If67e444a050d2a96e7d076c4faee8a160e08d4d5

WebCore/platform/PlatformTouchEvent.h
WebCore/platform/PlatformTouchPoint.h
WebCore/platform/android/PlatformTouchEventAndroid.cpp
WebCore/platform/android/PlatformTouchPointAndroid.cpp

index db0f552..19cb8e9 100644 (file)
@@ -60,7 +60,6 @@ public:
 #if PLATFORM(QT)
     PlatformTouchEvent(QTouchEvent*);
 #elif PLATFORM(ANDROID)
-    // Change in following line is in ANDROID but waiting for patch to WebKit getting accepted.
     PlatformTouchEvent(const Vector<IntPoint>&, TouchEventType, PlatformTouchPoint::State, int metaState);
 #endif
 
index ffde863..4b8ebae 100644 (file)
@@ -47,7 +47,6 @@ public:
     PlatformTouchPoint(const QTouchEvent::TouchPoint&);
     PlatformTouchPoint() {};
 #elif PLATFORM(ANDROID)
-    // Change in following line is in ANDROID but waiting for patch to WebKit getting accepted.
     PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State);
 #endif
 
index 50fc203..8b3d285 100644 (file)
@@ -37,12 +37,10 @@ enum AndroidMetaKeyState {
     META_SYM_ON = 0x04
 };
 
-// Changes in following two lines are in ANDROID but waiting for patch to WebKit getting accepted.
 PlatformTouchEvent::PlatformTouchEvent(const Vector<IntPoint>& windowPoints, TouchEventType type, PlatformTouchPoint::State state, int metaState)
     : m_type(type)
     , m_metaKey(false)
 {
-    // Changes in following three lines are in ANDROID but waiting for patch to WebKit getting accepted.
     m_touchPoints.reserveCapacity(windowPoints.size());
     for (unsigned c = 0; c < windowPoints.size(); c++)
         m_touchPoints.append(PlatformTouchPoint(c, windowPoints[c], state));
index 5a181cc..777410a 100644 (file)
@@ -30,7 +30,6 @@
 
 namespace WebCore {
 
-// Changes in following two lines are in ANDROID but waiting for patch to WebKit getting accepted.
 PlatformTouchPoint::PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State state)
     : m_id(id)
     , m_state(state)