Changeset 67401 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Sep 13, 2010, 11:56:46 AM (15 years ago)
Author:
[email protected]
Message:

210-09-13 Darin Fisher <[email protected]>

Reviewed by David Levin.

Add option to conditionally compile smooth scrolling support.
https://bugs.webkit.org/show_bug.cgi?id=45689

The OS(WINDOWS) conditional becomes unnecessary since
ENABLE(SMOOTH_SCROLLING) should only be specified on
platforms that have a smooth scrolling implementation.

  • platform/ScrollAnimator.cpp:
  • platform/ScrollAnimatorWin.cpp:
  • platform/ScrollAnimatorWin.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r67388 r67401  
     12010-09-13  Darin Fisher  <[email protected]>
     2
     3        Reviewed by David Levin.
     4
     5        Add option to conditionally compile smooth scrolling support.
     6        https://bugs.webkit.org/show_bug.cgi?id=45689
     7
     8        ENABLE(SMOOTH_SCROLLING) is disabled by default for all platforms.
     9
     10        * wtf/Platform.h:
     11
    1122010-09-13  Adam Roben  <[email protected]>
    213
  • trunk/JavaScriptCore/wtf/Platform.h

    r67146 r67401  
    10461046#endif
    10471047
     1048#if !defined(ENABLE_SMOOTH_SCROLLING)
     1049#define ENABLE_SMOOTH_SCROLLING 0
     1050#endif
     1051
    10481052/* Use the QXmlStreamReader implementation for XMLDocumentParser */
    10491053/* Use the QXmlQuery implementation for XSLTProcessor */
Note: See TracChangeset for help on using the changeset viewer.