⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 98754 in webkit


Ignore:
Timestamp:
Oct 28, 2011, 1:10:24 PM (15 years ago)
Author:
leviw@chromium.org
Message:

Build fixes for Chromium-Mac.

Location:
branches/subpixellayout/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/subpixellayout/Source/WebCore/WebCore.gypi

    r98662 r98754  
    34173417            'platform/graphics/cairo/TransformationMatrixCairo.cpp',
    34183418            'platform/graphics/cg/ColorCG.cpp',
     3419            'platform/graphics/cg/FixedPointCG.cpp',
     3420            'platform/graphics/cg/FixedRectCG.cpp',
     3421            'platform/graphics/cg/FixedSizeCG.cpp',
    34193422            'platform/graphics/cg/FloatPointCG.cpp',
    34203423            'platform/graphics/cg/FloatRectCG.cpp',
  • branches/subpixellayout/Source/WebCore/platform/graphics/FixedRect.h

    r98391 r98754  
    220220#if (PLATFORM(MAC) && !defined(NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES)) \
    221221        || (PLATFORM(CHROMIUM) && OS(DARWIN))  || (PLATFORM(QT) && USE(QTKIT))
     222    FixedRect(const NSRect&);
    222223    operator NSRect() const;
    223224#endif
  • branches/subpixellayout/Source/WebCore/platform/graphics/FixedSize.h

    r98528 r98754  
    122122#endif
    123123
    124 #if (PLATFORM(MAC) || (PLATFORM(QT) && USE(QTKIT))) && !defined(NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES)
     124#if (PLATFORM(MAC) || (PLATFORM(QT) && USE(QTKIT)) || PLATFORM(CHROMIUM) && OS(DARWIN)) && !defined(NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES)
    125125    explicit FixedSize(const NSSize &); // don't do this implicitly since it's lossy
    126126    operator NSSize() const;
Note: See TracChangeset for help on using the changeset viewer.