Changeset 182219 in webkit
- Timestamp:
- Mar 31, 2015, 9:06:07 PM (10 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r182217 r182219 1 2015-03-31 Dan Bernstein <mitz@apple.com> 2 3 <rdar://problem/20365675> [iOS] Include Add to Reading List link action only where supported 4 https://bugs.webkit.org/show_bug.cgi?id=143289 5 6 Reviewed by Tim Horton. 7 8 * UIProcess/API/Cocoa/_WKElementAction.h: Excluded _WKElementActionTypeAddToReadingList from 9 the _WKElementActionType enum when Reading List is not supported. 10 11 * UIProcess/API/Cocoa/_WKElementAction.mm: 12 (+[_WKElementAction elementActionWithType:customTitle:]): Made Add to Reading List code 13 conditional on HAVE(SAFARI_SERVICES_FRAMEWORK). 14 15 * UIProcess/ios/WKActionSheetAssistant.mm: 16 (-[WKActionSheetAssistant showImageSheet]): Ditto. 17 (-[WKActionSheetAssistant showLinkSheet]): Ditto. 18 19 * config.h: Defined HAVE_SAFARI_SERVICES_FRAMEWORK. 20 1 21 2015-03-31 Timothy Horton <timothy_horton@apple.com> 2 22 -
trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKElementAction.h
r169664 r182219 40 40 _WKElementActionTypeCopy, 41 41 _WKElementActionTypeSaveImage, 42 #if !defined(TARGET_OS_IOS) || TARGET_OS_IOS 42 43 _WKElementActionTypeAddToReadingList, 44 #endif 43 45 } WK_ENUM_AVAILABLE(10_10, 8_0); 44 46 -
trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKElementAction.mm
r175577 r182219 35 35 #import "WKContentViewInteraction.h" 36 36 #import "_WKActivatedElementInfoInternal.h" 37 #import <SafariServices/SSReadingList.h>38 37 #import <WebCore/LocalizedStrings.h> 39 38 #import <WebCore/SoftLinking.h> … … 41 40 #import <wtf/text/WTFString.h> 42 41 42 #if HAVE(SAFARI_SERVICES_FRAMEWORK) 43 #import <SafariServices/SSReadingList.h> 43 44 SOFT_LINK_FRAMEWORK(SafariServices); 44 45 SOFT_LINK_CLASS(SafariServices, SSReadingList); 46 #endif 45 47 46 48 typedef void (^WKElementActionHandlerInternal)(WKActionSheetAssistant *, _WKActivatedElementInfo *); … … 77 79 } 78 80 81 #if HAVE(SAFARI_SERVICES_FRAMEWORK) 79 82 static void addToReadingList(NSURL *targetURL, NSString *title) 80 83 { … … 84 87 [[getSSReadingListClass() defaultReadingList] addReadingListItemWithURL:targetURL title:title previewText:nil error:nil]; 85 88 } 89 #endif 86 90 87 91 + (instancetype)elementActionWithType:(_WKElementActionType)type customTitle:(NSString *)customTitle … … 108 112 }; 109 113 break; 114 #if HAVE(SAFARI_SERVICES_FRAMEWORK) 110 115 case _WKElementActionTypeAddToReadingList: 111 116 title = WEB_UI_STRING("Add to Reading List", "Title for Add to Reading List action button"); … … 114 119 }; 115 120 break; 121 #endif 116 122 default: 117 123 [NSException raise:NSInvalidArgumentException format:@"There is no standard web element action of type %ld.", (long)type]; -
trunk/Source/WebKit2/UIProcess/ios/WKActionSheetAssistant.mm
r178080 r182219 38 38 #import "_WKActivatedElementInfoInternal.h" 39 39 #import "_WKElementActionInternal.h" 40 #import <SafariServices/SSReadingList.h>41 40 #import <UIKit/UIView.h> 42 41 #import <WebCore/LocalizedStrings.h> … … 45 44 #import <wtf/text/WTFString.h> 46 45 46 #if HAVE(SAFARI_SERVICES_FRAMEWORK) 47 #import <SafariServices/SSReadingList.h> 47 48 SOFT_LINK_FRAMEWORK(SafariServices) 48 49 SOFT_LINK_CLASS(SafariServices, SSReadingList) 50 #endif 49 51 50 52 SOFT_LINK_PRIVATE_FRAMEWORK(TCC) … … 247 249 if (!positionInformation.url.isEmpty()) 248 250 [defaultActions addObject:[_WKElementAction elementActionWithType:_WKElementActionTypeOpen]]; 251 #if HAVE(SAFARI_SERVICES_FRAMEWORK) 249 252 if ([getSSReadingListClass() supportsURL:targetURL]) 250 253 [defaultActions addObject:[_WKElementAction elementActionWithType:_WKElementActionTypeAddToReadingList]]; 254 #endif 251 255 if (TCCAccessPreflight(getkTCCServicePhotos(), NULL) != kTCCAccessPreflightDenied) 252 256 [defaultActions addObject:[_WKElementAction elementActionWithType:_WKElementActionTypeSaveImage]]; … … 289 293 auto defaultActions = adoptNS([[NSMutableArray alloc] init]); 290 294 [defaultActions addObject:[_WKElementAction elementActionWithType:_WKElementActionTypeOpen]]; 295 #if HAVE(SAFARI_SERVICES_FRAMEWORK) 291 296 if ([getSSReadingListClass() supportsURL:targetURL]) 292 297 [defaultActions addObject:[_WKElementAction elementActionWithType:_WKElementActionTypeAddToReadingList]]; 298 #endif 293 299 if (![[targetURL scheme] length] || [[targetURL scheme] caseInsensitiveCompare:@"javascript"] != NSOrderedSame) 294 300 [defaultActions addObject:[_WKElementAction elementActionWithType:_WKElementActionTypeCopy]]; -
trunk/Source/WebKit2/config.h
r180869 r182219 89 89 #endif 90 90 #endif 91 92 #ifndef HAVE_SAFARI_SERVICES_FRAMEWORK 93 #if PLATFORM(IOS) && (!defined TARGET_OS_IOS || TARGET_OS_IOS) 94 #define HAVE_SAFARI_SERVICES_FRAMEWORK 1 95 #else 96 #define HAVE_SAFARI_SERVICES_FRAMEWORK 0 97 #endif 98 #endif
Note:
See TracChangeset
for help on using the changeset viewer.