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

Changeset 175975 in webkit


Ignore:
Timestamp:
Nov 11, 2014, 2:02:16 PM (12 years ago)
Author:
mmaxfield@apple.com
Message:

Unreviewd iOS build fix

  • platform/spi/cocoa/CoreTextSPI.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r175974 r175975  
     12014-11-11  Myles C. Maxfield  <mmaxfield@apple.com>
     2
     3        Unreviewd iOS build fix
     4
     5        * platform/spi/cocoa/CoreTextSPI.h:
     6
    172014-11-11  David Kilzer  <ddkilzer@apple.com>
    28
  • trunk/Source/WebCore/platform/spi/cocoa/CoreTextSPI.h

    r175972 r175975  
    3939typedef void (*CTUniCharDisposeCallback)(const UniChar* chars, void* refCon);
    4040
    41 #if !USE(APPLE_INTERNAL_SDK) || __MAC_OS_X_VERSION_MIN_REQUIRED < 1090
     41#if PLATFORM(IOS) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED > 1080)
     42#if !USE(APPLE_INTERNAL_SDK)
    4243typedef CF_OPTIONS(uint32_t, CTFontTransformOptions)
    4344{
     
    4647};
    4748#endif
     49bool CTFontGetVerticalGlyphsForCharacters(CTFontRef, const UniChar characters[], CGGlyph glyphs[], CFIndex count);
     50#endif
    4851
    4952CGSize CTRunGetInitialAdvance(CTRunRef run);
     
    5154CTTypesetterRef CTTypesetterCreateWithUniCharProviderAndOptions(CTUniCharProviderCallback provide, CTUniCharDisposeCallback dispose, void* refCon, CFDictionaryRef options);
    5255bool CTFontTransformGlyphs(CTFontRef, CGGlyph glyphs[], CGSize advances[], CFIndex count, CTFontTransformOptions);
    53 bool CTFontGetVerticalGlyphsForCharacters(CTFontRef, const UniChar characters[], CGGlyph glyphs[], CFIndex count);
    5456
    5557}
Note: See TracChangeset for help on using the changeset viewer.