Changeset 161671 in webkit


Ignore:
Timestamp:
Jan 10, 2014 1:37:19 PM (10 years ago)
Author:
aestes@apple.com
Message:

Fix some iOS build errors during bindings generation.

  • bindings/objc/PublicDOMInterfaces.h: Included

WebKitAdditions/PublicDOMInterfacesIOS.h and change
-[DOMRGBColor color] to return a CGColorRef on iOS.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r161670 r161671  
     12014-01-10  Andy Estes  <aestes@apple.com>
     2
     3        Fix some iOS build errors during bindings generation.
     4
     5        * bindings/objc/PublicDOMInterfaces.h: Included
     6        WebKitAdditions/PublicDOMInterfacesIOS.h and change
     7        -[DOMRGBColor color] to return a CGColorRef on iOS.
     8
    192014-01-10  Timothy Hatcher  <timothy@apple.com>
    210
  • trunk/Source/WebCore/bindings/objc/PublicDOMInterfaces.h

    r161638 r161671  
    954954@property (readonly, strong) DOMCSSPrimitiveValue *blue;
    955955@property (readonly, strong) DOMCSSPrimitiveValue *alpha;
     956#if !PLATFORM(IOS)
    956957@property (readonly, copy) NSColor *color WEBKIT_AVAILABLE_MAC(10_5);
     958#else
     959- (CGColorRef)color;
     960#endif
    957961@end
    958962
     
    12461250- (NSString *)lookupNamespaceURI:(NSString *)prefix;
    12471251@end
     1252
     1253#if PLATFORM(IOS)
     1254#include <WebKitAdditions/PublicDOMInterfacesIOS.h>
     1255#endif
Note: See TracChangeset for help on using the changeset viewer.