Changeset 162831 in webkit


Ignore:
Timestamp:
Jan 27, 2014, 1:09:18 AM (12 years ago)
Author:
timothy_horton@apple.com
Message:

Another iOS build fix.

  • Misc/WebElementDictionary.mm:

(-[WebElementDictionary _image]):
We were apparently depending on Image::getNSImage() being defined
(yet always returning nullptr) on iOS.

Location:
trunk/Source/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/mac/ChangeLog

    r162824 r162831  
     12014-01-27  Tim Horton  <timothy_horton@apple.com>
     2
     3        Another iOS build fix.
     4
     5        * Misc/WebElementDictionary.mm:
     6        (-[WebElementDictionary _image]):
     7        We were apparently depending on Image::getNSImage() being defined
     8        (yet always returning nullptr) on iOS.
     9
    1102014-01-26  David Kilzer  <ddkilzer@apple.com>
    211
  • trunk/Source/WebKit/mac/Misc/WebElementDictionary.mm

    r161185 r162831  
    207207- (NSImage *)_image
    208208{
     209#if !PLATFORM(IOS)
    209210    Image* image = _result->image();
    210211    return image ? image->getNSImage() : nil;
     212#else
     213    return nil;
     214#endif
    211215}
    212216
Note: See TracChangeset for help on using the changeset viewer.