Changeset 187198 in webkit
- Timestamp:
- Jul 22, 2015, 6:08:30 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/ios/WKContentViewInteraction.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r187196 r187198 1 2015-07-22 Tim Horton <timothy_horton@apple.com> 2 3 [iOS] Adjust the preview architecture 4 https://bugs.webkit.org/show_bug.cgi?id=147203 5 <rdar://problem/21945775> 6 7 Reviewed by Simon Fraser. 8 9 * UIProcess/ios/WKContentViewInteraction.mm: 10 (-[WKContentView _dataForPreviewItemController:atPosition:type:]): 11 Link previews should win over image previews if both are possible. 12 1 13 2015-07-22 James Savage <james.savage@apple.com> 2 14 -
trunk/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm
r187193 r187198 3264 3264 else 3265 3265 dataForPreview[UIPreviewDataLink] = [NSURL _web_URLWithWTFString:_positionInformation.url]; 3266 } 3267 if (canShowImagePreview) { 3266 } else if (canShowImagePreview) { 3268 3267 *type = UIPreviewItemTypeImage; 3269 3268 dataForPreview[UIPreviewDataLink] = [NSURL _web_URLWithWTFString:_positionInformation.imageURL];
Note:
See TracChangeset
for help on using the changeset viewer.