Changeset 108747 in webkit


Ignore:
Timestamp:
Feb 24, 2012 12:42:47 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] Enable requestAnimationFrame
https://bugs.webkit.org/show_bug.cgi?id=79408

Source/JavaScriptCore:

Use timer implementation of requestAnimationFrame on BlackBerry.

Patch by Andrew Lo <anlo@rim.com> on 2012-02-24
Reviewed by Rob Buis.

  • wtf/Platform.h:

Tools:

Enable requestAnimationFrame for BlackBerry.

Patch by Andrew Lo <anlo@rim.com> on 2012-02-24
Reviewed by Rob Buis.

  • Scripts/build-webkit:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r108742 r108747  
     12012-02-24  Andrew Lo  <anlo@rim.com>
     2
     3        [BlackBerry] Enable requestAnimationFrame
     4        https://bugs.webkit.org/show_bug.cgi?id=79408
     5
     6        Use timer implementation of requestAnimationFrame on BlackBerry.
     7
     8        Reviewed by Rob Buis.
     9
     10        * wtf/Platform.h:
     11
    1122012-02-24  Mathias Bynens  <mathias@qiwi.be>
    213
  • trunk/Source/JavaScriptCore/wtf/Platform.h

    r108731 r108747  
    11581158#endif
    11591159
    1160 #if PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(EFL) || (PLATFORM(WIN) && !OS(WINCE) && !PLATFORM(WIN_CAIRO)) || PLATFORM(QT)
     1160#if PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(EFL) || (PLATFORM(WIN) && !OS(WINCE) && !PLATFORM(WIN_CAIRO)) || PLATFORM(QT) || PLATFORM(BLACKBERRY)
    11611161#define WTF_USE_REQUEST_ANIMATION_FRAME_TIMER 1
    11621162#endif
  • trunk/Tools/ChangeLog

    r108744 r108747  
     12012-02-24  Andrew Lo  <anlo@rim.com>
     2
     3        [BlackBerry] Enable requestAnimationFrame
     4        https://bugs.webkit.org/show_bug.cgi?id=79408
     5
     6        Enable requestAnimationFrame for BlackBerry.
     7
     8        Reviewed by Rob Buis.
     9
     10        * Scripts/build-webkit:
     11
    1122012-02-24  Adam Barth  <abarth@webkit.org>
    213
  • trunk/Tools/Scripts/build-webkit

    r108272 r108747  
    143143my @features = (
    144144    { option => "request-animation-frame", desc => "Toggle requestAnimationFrame support",
    145       define => "ENABLE_REQUEST_ANIMATION_FRAME", default => (isAppleMacWebKit() || isGtk()), value => \$requestAnimationFrameSupport },
     145      define => "ENABLE_REQUEST_ANIMATION_FRAME", default => (isAppleMacWebKit() || isGtk() || isBlackBerry()), value => \$requestAnimationFrameSupport },
    146146
    147147    { option => "download-attribute", desc => "Toggle download attribute support",
Note: See TracChangeset for help on using the changeset viewer.