Title: [116994] trunk
Revision
116994
Author
[email protected]
Date
2012-05-14 13:52:05 -0700 (Mon, 14 May 2012)

Log Message

Unreviewed, rolling out r116983.
http://trac.webkit.org/changeset/116983
https://bugs.webkit.org/show_bug.cgi?id=86397

Does not compile on chromium-win (Requested by abarth on
#webkit).

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

Source/WebCore:

* WebCore.gypi:
* page/TouchAdjustment.cpp:

Source/WebKit/chromium:

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

LayoutTests:

* platform/chromium/test_expectations.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (116993 => 116994)


--- trunk/LayoutTests/ChangeLog	2012-05-14 20:49:54 UTC (rev 116993)
+++ trunk/LayoutTests/ChangeLog	2012-05-14 20:52:05 UTC (rev 116994)
@@ -1,3 +1,14 @@
+2012-05-14  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r116983.
+        http://trac.webkit.org/changeset/116983
+        https://bugs.webkit.org/show_bug.cgi?id=86397
+
+        Does not compile on chromium-win (Requested by abarth on
+        #webkit).
+
+        * platform/chromium/test_expectations.txt:
+
 2012-05-14  Stephen Chenney  <[email protected]>
 
         [SVG] Nothing should be stroked when the stroke-width is 0

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (116993 => 116994)


--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-05-14 20:49:54 UTC (rev 116993)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-05-14 20:52:05 UTC (rev 116994)
@@ -143,6 +143,9 @@
 // Battery Status API is not supported yet in the chromium port.
 BUGWK62698 SKIP : batterystatus = PASS 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 (116993 => 116994)


--- trunk/Source/WebCore/ChangeLog	2012-05-14 20:49:54 UTC (rev 116993)
+++ trunk/Source/WebCore/ChangeLog	2012-05-14 20:52:05 UTC (rev 116994)
@@ -1,3 +1,15 @@
+2012-05-14  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r116983.
+        http://trac.webkit.org/changeset/116983
+        https://bugs.webkit.org/show_bug.cgi?id=86397
+
+        Does not compile on chromium-win (Requested by abarth on
+        #webkit).
+
+        * WebCore.gypi:
+        * page/TouchAdjustment.cpp:
+
 2012-05-14  Dan Bernstein  <[email protected]>
 
         Pagination splits lines that could fit on a single page if it were not for their top leading

Modified: trunk/Source/WebCore/WebCore.gypi (116993 => 116994)


--- trunk/Source/WebCore/WebCore.gypi	2012-05-14 20:49:54 UTC (rev 116993)
+++ trunk/Source/WebCore/WebCore.gypi	2012-05-14 20:52:05 UTC (rev 116994)
@@ -3056,8 +3056,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/WebCore/page/TouchAdjustment.cpp (116993 => 116994)


--- trunk/Source/WebCore/page/TouchAdjustment.cpp	2012-05-14 20:49:54 UTC (rev 116993)
+++ trunk/Source/WebCore/page/TouchAdjustment.cpp	2012-05-14 20:52:05 UTC (rev 116994)
@@ -34,7 +34,6 @@
 #include "RenderBox.h"
 #include "RenderObject.h"
 #include "RenderStyle.h"
-#include <math.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebKit/chromium/ChangeLog (116993 => 116994)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-05-14 20:49:54 UTC (rev 116993)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-05-14 20:52:05 UTC (rev 116994)
@@ -1,3 +1,16 @@
+2012-05-14  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r116983.
+        http://trac.webkit.org/changeset/116983
+        https://bugs.webkit.org/show_bug.cgi?id=86397
+
+        Does not compile on chromium-win (Requested by abarth on
+        #webkit).
+
+        * features.gypi:
+        * src/WebInputEventConversion.cpp:
+        (WebKit::PlatformGestureEventBuilder::PlatformGestureEventBuilder):
+
 2012-05-14  Terry Anderson  <[email protected]>
 
         [chromium] Compute the best target node on a GestureTap event

Modified: trunk/Source/WebKit/chromium/features.gypi (116993 => 116994)


--- trunk/Source/WebKit/chromium/features.gypi	2012-05-14 20:49:54 UTC (rev 116993)
+++ trunk/Source/WebKit/chromium/features.gypi	2012-05-14 20:52:05 UTC (rev 116994)
@@ -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 (116993 => 116994)


--- trunk/Source/WebKit/chromium/src/WebInputEventConversion.cpp	2012-05-14 20:49:54 UTC (rev 116993)
+++ trunk/Source/WebKit/chromium/src/WebInputEventConversion.cpp	2012-05-14 20:52:05 UTC (rev 116994)
@@ -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