Changeset 103059 in webkit


Ignore:
Timestamp:
Dec 16, 2011 5:04:50 AM (12 years ago)
Author:
senorblanco@chromium.org
Message:

Enable CSS_FILTERS in Chromium.
https://bugs.webkit.org/show_bug.cgi?id=74334

Reviewed by Chris Marrin.

Source/WebCore:

Covered by css3/filters (when enabled).

  • platform/graphics/filters/FilterOperation.h:

(WebCore::PassthroughFilterOperation::PassthroughFilterOperation):
Since wingdi.h #define's PASSTHROUGH, #undef it after the includes.

Source/WebKit/chromium:

  • features.gypi:
Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r103056 r103059  
     12011-12-15  Stephen White  <senorblanco@chromium.org>
     2
     3        Enable CSS_FILTERS in Chromium.
     4        https://bugs.webkit.org/show_bug.cgi?id=74334
     5
     6        Reviewed by Chris Marrin.
     7
     8        Covered by css3/filters (when enabled).
     9
     10        * platform/graphics/filters/FilterOperation.h:
     11        (WebCore::PassthroughFilterOperation::PassthroughFilterOperation):
     12        Since wingdi.h #define's PASSTHROUGH, #undef it after the includes.
     13
    1142011-12-16  Patrick Gansterer  <paroga@webkit.org>
    215
  • trunk/Source/WebCore/platform/graphics/filters/FilterOperation.h

    r102942 r103059  
    3636#include <wtf/text/AtomicString.h>
    3737
     38// Annoyingly, wingdi.h #defines this.
     39#ifdef PASSTHROUGH
     40#undef PASSTHROUGH
     41#endif
     42
    3843namespace WebCore {
    3944
  • trunk/Source/WebKit/chromium/ChangeLog

    r103030 r103059  
     12011-12-15  Stephen White  <senorblanco@chromium.org>
     2
     3        Enable CSS_FILTERS in Chromium.
     4        https://bugs.webkit.org/show_bug.cgi?id=74334
     5
     6        Reviewed by Chris Marrin.
     7
     8        * features.gypi:
     9
    1102011-12-15  Yongjun Zhang  <yongjun_zhang@apple.com>
    211
  • trunk/Source/WebKit/chromium/features.gypi

    r102972 r103059  
    3838      'ENABLE_CHANNEL_MESSAGING=1',
    3939      'ENABLE_CLIENT_BASED_GEOLOCATION=1',
     40      'ENABLE_CSS_FILTERS=1',
    4041      'ENABLE_DASHBOARD_SUPPORT=0',
    4142      'ENABLE_DATA_TRANSFER_ITEMS=1',
Note: See TracChangeset for help on using the changeset viewer.