Changeset 38382 in webkit


Ignore:
Timestamp:
Nov 13, 2008 7:54:20 PM (15 years ago)
Author:
eric@webkit.org
Message:

Reviewed by Adam Roben.

Add PLATFORM(CHROMIUM) to the "we don't use cairo" blacklist
until https://bugs.webkit.org/show_bug.cgi?id=22250 is fixed.

  • wtf/Platform.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r38381 r38382  
     12008-11-13  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Roben.
     4       
     5        Add PLATFORM(CHROMIUM) to the "we don't use cairo" blacklist
     6        until https://bugs.webkit.org/show_bug.cgi?id=22250 is fixed.
     7
     8        * wtf/Platform.h:
     9
    1102008-11-13  Cameron Zwarich  <zwarich@apple.com>
    211
  • trunk/JavaScriptCore/wtf/Platform.h

    r38372 r38382  
    149149
    150150/* Makes PLATFORM(WIN) default to PLATFORM(CAIRO) */
    151 #if !PLATFORM(MAC) && !PLATFORM(QT) && !PLATFORM(WX)
     151/* FIXME: This should be changed from a blacklist to a whitelist */
     152#if !PLATFORM(MAC) && !PLATFORM(QT) && !PLATFORM(WX) && !PLATFORM(CHROMIUM)
    152153#define WTF_PLATFORM_CAIRO 1
    153154#endif
Note: See TracChangeset for help on using the changeset viewer.