Title: [116815] trunk
Revision
116815
Author
[email protected]
Date
2012-05-11 15:55:42 -0700 (Fri, 11 May 2012)

Log Message

Unreviewed, rolling out r116802.
http://trac.webkit.org/changeset/116802
https://bugs.webkit.org/show_bug.cgi?id=86260

This patch causes compiling error to chromium builds
(Requested by jianli_ on #webkit).

Patch by Sheriff Bot <[email protected]> on 2012-05-11

Source/WebCore:

* WebCore.gypi:

Source/WebKit/chromium:

* features.gypi:
* src/WebInputEventConversion.cpp:
(WebKit::PlatformGestureEventBuilder::PlatformGestureEventBuilder):

LayoutTests:

* platform/chromium/test_expectations.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (116814 => 116815)


--- trunk/LayoutTests/ChangeLog	2012-05-11 22:38:32 UTC (rev 116814)
+++ trunk/LayoutTests/ChangeLog	2012-05-11 22:55:42 UTC (rev 116815)
@@ -1,3 +1,14 @@
+2012-05-11  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r116802.
+        http://trac.webkit.org/changeset/116802
+        https://bugs.webkit.org/show_bug.cgi?id=86260
+
+        This patch causes compiling error to chromium builds
+        (Requested by jianli_ on #webkit).
+
+        * platform/chromium/test_expectations.txt:
+
 2012-05-11  Dave Tharp  <[email protected]>
 
         Integrate IETC CSS : xml namespace tests

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (116814 => 116815)


--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-05-11 22:38:32 UTC (rev 116814)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-05-11 22:55:42 UTC (rev 116815)
@@ -143,9 +143,8 @@
 // Battery Status API is not supported yet in the chromium port.
 BUGWK62698 SKIP : batterystatus = PASS FAIL
 
-// Unskip after investigation of failure by Allan Sandfeld Jensen
-BUGWK85101 SKIP : touchadjustment/event-triggered-widgets.html = FAIL
-BUGWK85101 SKIP : touchadjustment/touch-inlines.html = FAIL
+// Touch Adjustment is not supported yet in the chromium port.
+BUGWK78801 SKIP : touchadjustment/ = FAIL
 
 // Network Information API is not supported yet in the chromium port.
 BUGWK73528 SKIP : networkinformation = PASS FAIL

Modified: trunk/Source/WebCore/ChangeLog (116814 => 116815)


--- trunk/Source/WebCore/ChangeLog	2012-05-11 22:38:32 UTC (rev 116814)
+++ trunk/Source/WebCore/ChangeLog	2012-05-11 22:55:42 UTC (rev 116815)
@@ -1,3 +1,14 @@
+2012-05-11  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r116802.
+        http://trac.webkit.org/changeset/116802
+        https://bugs.webkit.org/show_bug.cgi?id=86260
+
+        This patch causes compiling error to chromium builds
+        (Requested by jianli_ on #webkit).
+
+        * WebCore.gypi:
+
 2012-05-11  Ryosuke Niwa  <[email protected]>
 
         Regression fix after r116798.

Modified: trunk/Source/WebCore/WebCore.gypi (116814 => 116815)


--- trunk/Source/WebCore/WebCore.gypi	2012-05-11 22:38:32 UTC (rev 116814)
+++ trunk/Source/WebCore/WebCore.gypi	2012-05-11 22:55:42 UTC (rev 116815)
@@ -3055,8 +3055,6 @@
             'page/SpeechInputResultList.h',
             'page/SuspendableTimer.cpp',
             'page/SuspendableTimer.h',
-            'page/TouchAdjustment.cpp',
-            'page/TouchAdjustment.h',
             'page/UserContentURLPattern.cpp',
             'page/WebKitAnimation.cpp',
             'page/WebKitAnimation.h',

Modified: trunk/Source/WebKit/chromium/ChangeLog (116814 => 116815)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-05-11 22:38:32 UTC (rev 116814)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-05-11 22:55:42 UTC (rev 116815)
@@ -1,3 +1,16 @@
+2012-05-11  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r116802.
+        http://trac.webkit.org/changeset/116802
+        https://bugs.webkit.org/show_bug.cgi?id=86260
+
+        This patch causes compiling error to chromium builds
+        (Requested by jianli_ on #webkit).
+
+        * features.gypi:
+        * src/WebInputEventConversion.cpp:
+        (WebKit::PlatformGestureEventBuilder::PlatformGestureEventBuilder):
+
 2012-05-11  Mark Pilgrim  <[email protected]>
 
         [Chromium] Move createLocalStorageNamespace to Platform.h

Modified: trunk/Source/WebKit/chromium/features.gypi (116814 => 116815)


--- trunk/Source/WebKit/chromium/features.gypi	2012-05-11 22:38:32 UTC (rev 116814)
+++ trunk/Source/WebKit/chromium/features.gypi	2012-05-11 22:55:42 UTC (rev 116815)
@@ -97,7 +97,6 @@
       'ENABLE_STYLE_SCOPED=1',
       'ENABLE_SVG=<(enable_svg)',
       'ENABLE_SVG_FONTS=<(enable_svg)',
-      'ENABLE_TOUCH_ADJUSTMENT=1',
       'ENABLE_TOUCH_EVENTS=<(enable_touch_events)',
       'ENABLE_TOUCH_ICON_LOADING=<(enable_touch_icon_loading)',
       'ENABLE_V8_SCRIPT_DEBUG_SERVER=1',

Modified: trunk/Source/WebKit/chromium/src/WebInputEventConversion.cpp (116814 => 116815)


--- trunk/Source/WebKit/chromium/src/WebInputEventConversion.cpp	2012-05-11 22:38:32 UTC (rev 116814)
+++ trunk/Source/WebKit/chromium/src/WebInputEventConversion.cpp	2012-05-11 22:55:42 UTC (rev 116815)
@@ -148,7 +148,6 @@
         break;
     case WebInputEvent::GestureTap:
         m_type = PlatformEvent::GestureTap;
-        m_area = IntSize(e.deltaX * 2, e.deltaY * 2);
         break;
     case WebInputEvent::GestureTapDown:
         m_type = PlatformEvent::GestureTapDown;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to