Changeset 187315 in webkit
- Timestamp:
- Jul 24, 2015, 12:54:20 AM (11 years ago)
- Location:
- branches/safari-601.1-branch/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/ios/WKContentViewInteraction.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-601.1-branch/Source/WebKit2/ChangeLog
r187314 r187315 1 2015-07-24 Matthew Hanson <matthew_hanson@apple.com> 2 3 Merge r187198. rdar://problem/21945775 4 5 2015-07-22 Tim Horton <timothy_horton@apple.com> 6 7 [iOS] Adjust the preview architecture 8 https://bugs.webkit.org/show_bug.cgi?id=147203 9 <rdar://problem/21945775> 10 11 Reviewed by Simon Fraser. 12 13 * UIProcess/ios/WKContentViewInteraction.mm: 14 (-[WKContentView _dataForPreviewItemController:atPosition:type:]): 15 Link previews should win over image previews if both are possible. 16 1 17 2015-07-24 Matthew Hanson <matthew_hanson@apple.com> 2 18 -
branches/safari-601.1-branch/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm
r187314 r187315 3254 3254 else 3255 3255 dataForPreview[UIPreviewDataLink] = [NSURL _web_URLWithWTFString:_positionInformation.url]; 3256 } 3257 if (canShowImagePreview) { 3256 } else if (canShowImagePreview) { 3258 3257 *type = UIPreviewItemTypeImage; 3259 3258 dataForPreview[UIPreviewDataLink] = [NSURL _web_URLWithWTFString:_positionInformation.imageURL];
Note:
See TracChangeset
for help on using the changeset viewer.