Changeset 116815 in webkit


Ignore:
Timestamp:
May 11, 2012 3:55:42 PM (12 years ago)
Author:
commit-queue@webkit.org
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 <webkit.review.bot@gmail.com> 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:
Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r116808 r116815  
     12012-05-11  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r116802.
     4        http://trac.webkit.org/changeset/116802
     5        https://bugs.webkit.org/show_bug.cgi?id=86260
     6
     7        This patch causes compiling error to chromium builds
     8        (Requested by jianli_ on #webkit).
     9
     10        * platform/chromium/test_expectations.txt:
     11
    1122012-05-11  Dave Tharp  <dtharp@codeaurora.org>
    213
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r116808 r116815  
    144144BUGWK62698 SKIP : batterystatus = PASS FAIL
    145145
    146 // Unskip after investigation of failure by Allan Sandfeld Jensen
    147 BUGWK85101 SKIP : touchadjustment/event-triggered-widgets.html = FAIL
    148 BUGWK85101 SKIP : touchadjustment/touch-inlines.html = FAIL
     146// Touch Adjustment is not supported yet in the chromium port.
     147BUGWK78801 SKIP : touchadjustment/ = FAIL
    149148
    150149// Network Information API is not supported yet in the chromium port.
  • trunk/Source/WebCore/ChangeLog

    r116814 r116815  
     12012-05-11  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r116802.
     4        http://trac.webkit.org/changeset/116802
     5        https://bugs.webkit.org/show_bug.cgi?id=86260
     6
     7        This patch causes compiling error to chromium builds
     8        (Requested by jianli_ on #webkit).
     9
     10        * WebCore.gypi:
     11
    1122012-05-11  Ryosuke Niwa  <rniwa@webkit.org>
    213
  • trunk/Source/WebCore/WebCore.gypi

    r116811 r116815  
    30563056            'page/SuspendableTimer.cpp',
    30573057            'page/SuspendableTimer.h',
    3058             'page/TouchAdjustment.cpp',
    3059             'page/TouchAdjustment.h',
    30603058            'page/UserContentURLPattern.cpp',
    30613059            'page/WebKitAnimation.cpp',
  • trunk/Source/WebKit/chromium/ChangeLog

    r116812 r116815  
     12012-05-11  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r116802.
     4        http://trac.webkit.org/changeset/116802
     5        https://bugs.webkit.org/show_bug.cgi?id=86260
     6
     7        This patch causes compiling error to chromium builds
     8        (Requested by jianli_ on #webkit).
     9
     10        * features.gypi:
     11        * src/WebInputEventConversion.cpp:
     12        (WebKit::PlatformGestureEventBuilder::PlatformGestureEventBuilder):
     13
    1142012-05-11  Mark Pilgrim  <pilgrim@chromium.org>
    215
  • trunk/Source/WebKit/chromium/features.gypi

    r116802 r116815  
    9898      'ENABLE_SVG=<(enable_svg)',
    9999      'ENABLE_SVG_FONTS=<(enable_svg)',
    100       'ENABLE_TOUCH_ADJUSTMENT=1',
    101100      'ENABLE_TOUCH_EVENTS=<(enable_touch_events)',
    102101      'ENABLE_TOUCH_ICON_LOADING=<(enable_touch_icon_loading)',
  • trunk/Source/WebKit/chromium/src/WebInputEventConversion.cpp

    r116802 r116815  
    149149    case WebInputEvent::GestureTap:
    150150        m_type = PlatformEvent::GestureTap;
    151         m_area = IntSize(e.deltaX * 2, e.deltaY * 2);
    152151        break;
    153152    case WebInputEvent::GestureTapDown:
Note: See TracChangeset for help on using the changeset viewer.