Changeset 70272 in webkit


Ignore:
Timestamp:
Oct 21, 2010 3:37:31 PM (14 years ago)
Author:
mihaip@chromium.org
Message:

2010-10-21 Mihai Parparita <mihaip@chromium.org>

Reviewed by James Robinson.

[Chromium] Fix Chromium Mac build
https://bugs.webkit.org/show_bug.cgi?id=48096

Fix Chromium Mac build after r70225 (Chromium uses Core Text but is not
PLATFORM(MAC)).

  • platform/graphics/SimpleFontData.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r70266 r70272  
     12010-10-21  Mihai Parparita  <mihaip@chromium.org>
     2
     3        Reviewed by James Robinson.
     4
     5        [Chromium] Fix Chromium Mac build
     6        https://bugs.webkit.org/show_bug.cgi?id=48096
     7
     8        Fix Chromium Mac build after r70225 (Chromium uses Core Text but is not
     9        PLATFORM(MAC)).
     10
     11        * platform/graphics/SimpleFontData.h:
     12
    1132010-10-21  Xiaomei Ji  <xji@chromium.org>
    214
  • trunk/WebCore/platform/graphics/SimpleFontData.h

    r70250 r70272  
    3838#endif
    3939
    40 #if PLATFORM(MAC)
     40#if PLATFORM(MAC) || USE(CORE_TEXT)
    4141#include <wtf/RetainPtr.h>
    4242#endif
     
    131131#endif
    132132
    133 #if PLATFORM(MAC)
     133#if PLATFORM(MAC) || USE(CORE_TEXT)
    134134    CFDictionaryRef getCFStringAttributes(TypesettingFeatures) const;
    135135#endif
     
    235235#endif
    236236
    237 #if PLATFORM(MAC)
     237#if PLATFORM(MAC) || USE(CORE_TEXT)
    238238    mutable HashMap<unsigned, RetainPtr<CFDictionaryRef> > m_CFStringAttributes;
    239239#endif
Note: See TracChangeset for help on using the changeset viewer.