Changeset 182219 in webkit


Ignore:
Timestamp:
Mar 31, 2015, 9:06:07 PM (10 years ago)
Author:
mitz@apple.com
Message:

<rdar://problem/20365675> [iOS] Include Add to Reading List link action only where supported
https://bugs.webkit.org/show_bug.cgi?id=143289

Reviewed by Tim Horton.

  • UIProcess/API/Cocoa/_WKElementAction.h: Excluded _WKElementActionTypeAddToReadingList from

the _WKElementActionType enum when Reading List is not supported.

  • UIProcess/API/Cocoa/_WKElementAction.mm:

(+[_WKElementAction elementActionWithType:customTitle:]): Made Add to Reading List code
conditional on HAVE(SAFARI_SERVICES_FRAMEWORK).

  • UIProcess/ios/WKActionSheetAssistant.mm:

(-[WKActionSheetAssistant showImageSheet]): Ditto.
(-[WKActionSheetAssistant showLinkSheet]): Ditto.

  • config.h: Defined HAVE_SAFARI_SERVICES_FRAMEWORK.
Location:
trunk/Source/WebKit2
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r182217 r182219  
     12015-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
    1212015-03-31  Timothy Horton  <timothy_horton@apple.com>
    222
  • trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKElementAction.h

    r169664 r182219  
    4040    _WKElementActionTypeCopy,
    4141    _WKElementActionTypeSaveImage,
     42#if !defined(TARGET_OS_IOS) || TARGET_OS_IOS
    4243    _WKElementActionTypeAddToReadingList,
     44#endif
    4345} WK_ENUM_AVAILABLE(10_10, 8_0);
    4446
  • trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKElementAction.mm

    r175577 r182219  
    3535#import "WKContentViewInteraction.h"
    3636#import "_WKActivatedElementInfoInternal.h"
    37 #import <SafariServices/SSReadingList.h>
    3837#import <WebCore/LocalizedStrings.h>
    3938#import <WebCore/SoftLinking.h>
     
    4140#import <wtf/text/WTFString.h>
    4241
     42#if HAVE(SAFARI_SERVICES_FRAMEWORK)
     43#import <SafariServices/SSReadingList.h>
    4344SOFT_LINK_FRAMEWORK(SafariServices);
    4445SOFT_LINK_CLASS(SafariServices, SSReadingList);
     46#endif
    4547
    4648typedef void (^WKElementActionHandlerInternal)(WKActionSheetAssistant *, _WKActivatedElementInfo *);
     
    7779}
    7880
     81#if HAVE(SAFARI_SERVICES_FRAMEWORK)
    7982static void addToReadingList(NSURL *targetURL, NSString *title)
    8083{
     
    8487    [[getSSReadingListClass() defaultReadingList] addReadingListItemWithURL:targetURL title:title previewText:nil error:nil];
    8588}
     89#endif
    8690
    8791+ (instancetype)elementActionWithType:(_WKElementActionType)type customTitle:(NSString *)customTitle
     
    108112        };
    109113        break;
     114#if HAVE(SAFARI_SERVICES_FRAMEWORK)
    110115    case _WKElementActionTypeAddToReadingList:
    111116        title = WEB_UI_STRING("Add to Reading List", "Title for Add to Reading List action button");
     
    114119        };
    115120        break;
     121#endif
    116122    default:
    117123        [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  
    3838#import "_WKActivatedElementInfoInternal.h"
    3939#import "_WKElementActionInternal.h"
    40 #import <SafariServices/SSReadingList.h>
    4140#import <UIKit/UIView.h>
    4241#import <WebCore/LocalizedStrings.h>
     
    4544#import <wtf/text/WTFString.h>
    4645
     46#if HAVE(SAFARI_SERVICES_FRAMEWORK)
     47#import <SafariServices/SSReadingList.h>
    4748SOFT_LINK_FRAMEWORK(SafariServices)
    4849SOFT_LINK_CLASS(SafariServices, SSReadingList)
     50#endif
    4951
    5052SOFT_LINK_PRIVATE_FRAMEWORK(TCC)
     
    247249    if (!positionInformation.url.isEmpty())
    248250        [defaultActions addObject:[_WKElementAction elementActionWithType:_WKElementActionTypeOpen]];
     251#if HAVE(SAFARI_SERVICES_FRAMEWORK)
    249252    if ([getSSReadingListClass() supportsURL:targetURL])
    250253        [defaultActions addObject:[_WKElementAction elementActionWithType:_WKElementActionTypeAddToReadingList]];
     254#endif
    251255    if (TCCAccessPreflight(getkTCCServicePhotos(), NULL) != kTCCAccessPreflightDenied)
    252256        [defaultActions addObject:[_WKElementAction elementActionWithType:_WKElementActionTypeSaveImage]];
     
    289293    auto defaultActions = adoptNS([[NSMutableArray alloc] init]);
    290294    [defaultActions addObject:[_WKElementAction elementActionWithType:_WKElementActionTypeOpen]];
     295#if HAVE(SAFARI_SERVICES_FRAMEWORK)
    291296    if ([getSSReadingListClass() supportsURL:targetURL])
    292297        [defaultActions addObject:[_WKElementAction elementActionWithType:_WKElementActionTypeAddToReadingList]];
     298#endif
    293299    if (![[targetURL scheme] length] || [[targetURL scheme] caseInsensitiveCompare:@"javascript"] != NSOrderedSame)
    294300        [defaultActions addObject:[_WKElementAction elementActionWithType:_WKElementActionTypeCopy]];
  • trunk/Source/WebKit2/config.h

    r180869 r182219  
    8989#endif
    9090#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.