Changeset 162831 in webkit
- Timestamp:
- Jan 27, 2014, 1:09:18 AM (12 years ago)
- Location:
- trunk/Source/WebKit/mac
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/mac/ChangeLog
r162824 r162831 1 2014-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 1 10 2014-01-26 David Kilzer <ddkilzer@apple.com> 2 11 -
trunk/Source/WebKit/mac/Misc/WebElementDictionary.mm
r161185 r162831 207 207 - (NSImage *)_image 208 208 { 209 #if !PLATFORM(IOS) 209 210 Image* image = _result->image(); 210 211 return image ? image->getNSImage() : nil; 212 #else 213 return nil; 214 #endif 211 215 } 212 216
Note:
See TracChangeset
for help on using the changeset viewer.