Changeset 246157 in webkit


Ignore:
Timestamp:
Jun 6, 2019 9:50:49 AM (5 years ago)
Author:
Truitt Savell
Message:

Unreviewed, rolling out r246137.

Broke internal builds.

Reverted changeset:

"Introduce new SPI for context menus on iOS"
https://bugs.webkit.org/show_bug.cgi?id=198590
https://trac.webkit.org/changeset/246137

Location:
trunk/Source/WebKit
Files:
6 deleted
17 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r246156 r246157  
     12019-06-06  Truitt Savell  <tsavell@apple.com>
     2
     3        Unreviewed, rolling out r246137.
     4
     5        Broke internal builds.
     6
     7        Reverted changeset:
     8
     9        "Introduce new SPI for context menus on iOS"
     10        https://bugs.webkit.org/show_bug.cgi?id=198590
     11        https://trac.webkit.org/changeset/246137
     12
    1132019-06-06  Antti Koivisto  <antti@apple.com>
    214
  • trunk/Source/WebKit/Shared/API/APIObject.h

    r246137 r246157  
    110110        ContentRuleListAction,
    111111        ContentRuleListStore,
    112 #if PLATFORM(IOS_FAMILY)
    113         ContextMenuElementInfo,
    114 #endif
    115112        ContextMenuListener,
    116113        CookieManager,
  • trunk/Source/WebKit/Shared/API/Cocoa/WebKit.h

    r246137 r246157  
    2828#import <WebKit/WKContentRuleList.h>
    2929#import <WebKit/WKContentRuleListStore.h>
    30 #import <WebKit/WKContextMenuElementInfo.h>
    3130#import <WebKit/WKError.h>
    3231#import <WebKit/WKFoundation.h>
  • trunk/Source/WebKit/Shared/Cocoa/APIObject.mm

    r246137 r246157  
    3434#import "WKContentRuleListInternal.h"
    3535#import "WKContentRuleListStoreInternal.h"
    36 #import "WKContextMenuElementInfoInternal.h"
    3736#import "WKFrameInfoInternal.h"
    3837#import "WKHTTPCookieStoreInternal.h"
     
    315314        break;
    316315
    317 #if PLATFORM(IOS_FAMILY)
    318     case Type::ContextMenuElementInfo:
    319         wrapper = [WKContextMenuElementInfo alloc];
    320         break;
    321 #endif
    322 
    323316    case Type::CustomHeaderFields:
    324317        wrapper = [_WKCustomHeaderFields alloc];
  • trunk/Source/WebKit/Sources.txt

    r246137 r246157  
    301301UIProcess/API/APIContentRuleListAction.cpp
    302302UIProcess/API/APIContentRuleListStore.cpp
    303 UIProcess/API/APIContextMenuElementInfo.cpp
    304303UIProcess/API/APIExperimentalFeature.cpp
    305304UIProcess/API/APIFrameInfo.cpp
  • trunk/Source/WebKit/SourcesCocoa.txt

    r246137 r246157  
    285285UIProcess/API/Cocoa/WKContentRuleList.mm
    286286UIProcess/API/Cocoa/WKContentRuleListStore.mm
    287 UIProcess/API/Cocoa/WKContextMenuElementInfo.mm
    288287UIProcess/API/Cocoa/WKError.mm
    289288UIProcess/API/Cocoa/WKFrameInfo.mm
  • trunk/Source/WebKit/UIProcess/API/Cocoa/WKPreviewElementInfo.h

    r246137 r246157  
    3232NS_ASSUME_NONNULL_BEGIN
    3333
    34 WK_CLASS_DEPRECATED_WITH_REPLACEMENT("WKContextMenuElementInfo", ios(10.0, WK_IOS_TBA))
     34WK_CLASS_AVAILABLE(ios(10.0))
    3535@interface WKPreviewElementInfo : NSObject <NSCopying>
    3636
  • trunk/Source/WebKit/UIProcess/API/Cocoa/WKUIDelegatePrivate.h

    r246137 r246157  
    4141
    4242#if TARGET_OS_IOS
    43 @class UIContextMenuConfiguration;
    4443@class UIDragItem;
    4544@class UITargetedDragPreview;
    46 @class WKContextMenuElementInfo;
    47 @protocol UIContextMenuInteractionCommitAnimating;
    4845@protocol UIDragSession;
    4946@protocol UIDropSession;
     
    139136- (BOOL)_webView:(WKWebView *)webView shouldRequestGeolocationAuthorizationForURL:(NSURL *)url isMainFrame:(BOOL)isMainFrame mainFrameURL:(NSURL *)mainFrameURL;
    140137- (void)_webView:(WKWebView *)webView requestGeolocationAuthorizationForURL:(NSURL *)url frame:(WKFrameInfo *)frame decisionHandler:(void (^)(BOOL authorized))decisionHandler WK_API_AVAILABLE(ios(11.0));
    141 - (UIViewController *)_webView:(WKWebView *)webView previewViewControllerForURL:(NSURL *)url WK_API_DEPRECATED_WITH_REPLACEMENT("webView:contextMenuConfigurationForElement:completionHandler:", ios(9.0, WK_IOS_TBA));
    142 - (void)_webView:(WKWebView *)webView commitPreviewedViewController:(UIViewController *)previewedViewController WK_API_DEPRECATED_WITH_REPLACEMENT("webView:commitContextMenu:", ios(9.0, WK_IOS_TBA));
    143 - (void)_webView:(WKWebView *)webView willPreviewImageWithURL:(NSURL *)imageURL WK_API_DEPRECATED_WITH_REPLACEMENT("webView:contextMenuConfigurationForElement:completionHandler:", ios(9.0, WK_IOS_TBA));
    144 - (void)_webView:(WKWebView *)webView commitPreviewedImageWithURL:(NSURL *)imageURL WK_API_DEPRECATED_WITH_REPLACEMENT("webView:commitContextMenu:", ios(9.0, WK_IOS_TBA));
    145 - (void)_webView:(WKWebView *)webView didDismissPreviewViewController:(UIViewController *)previewedViewController committing:(BOOL)committing WK_API_DEPRECATED_WITH_REPLACEMENT("webView:dismissContextMenu:", ios(9.0, WK_IOS_TBA));
    146 - (void)_webView:(WKWebView *)webView didDismissPreviewViewController:(UIViewController *)previewedViewController WK_API_DEPRECATED_WITH_REPLACEMENT("webView:dismissContextMenu:", ios(9.0, WK_IOS_TBA));
    147 
    148 // This needs to be kept once there is an API version to continue to do callbacks for image element context menus.
    149 - (void)_webView:(WKWebView *)webView contextMenuConfigurationForElement:(WKContextMenuElementInfo *)elementInfo completionHandler:(void(^)(UIContextMenuConfiguration *))completionHandler WK_API_AVAILABLE(ios(WK_IOS_TBA));
    150 
    151 // These can be removed once there is an API version.
    152 - (void)_webView:(WKWebView *)webView contextMenuForElement:(WKContextMenuElementInfo *)elementInfo willCommitWithAnimator:(id<UIContextMenuInteractionCommitAnimating>)animator WK_API_AVAILABLE(ios(WK_IOS_TBA));
    153 - (void)_webView:(WKWebView *)webView contextMenuWillPresentForElement:(WKContextMenuElementInfo *)elementInfo WK_API_AVAILABLE(ios(WK_IOS_TBA));
    154 - (void)_webView:(WKWebView *)webView contextMenuDidEndForElement:(WKContextMenuElementInfo *)elementInfo WK_API_AVAILABLE(ios(WK_IOS_TBA));
    155 
     138- (UIViewController *)_webView:(WKWebView *)webView previewViewControllerForURL:(NSURL *)url WK_API_AVAILABLE(ios(9.0));
     139- (void)_webView:(WKWebView *)webView commitPreviewedViewController:(UIViewController *)previewedViewController WK_API_AVAILABLE(ios(9.0));
     140- (void)_webView:(WKWebView *)webView willPreviewImageWithURL:(NSURL *)imageURL WK_API_AVAILABLE(ios(9.0));
     141- (void)_webView:(WKWebView *)webView commitPreviewedImageWithURL:(NSURL *)imageURL WK_API_AVAILABLE(ios(9.0));
     142- (void)_webView:(WKWebView *)webView didDismissPreviewViewController:(UIViewController *)previewedViewController committing:(BOOL)committing WK_API_AVAILABLE(ios(9.0));
     143- (void)_webView:(WKWebView *)webView didDismissPreviewViewController:(UIViewController *)previewedViewController WK_API_AVAILABLE(ios(9.0));
    156144- (BOOL)_webView:(WKWebView *)webView showCustomSheetForElement:(_WKActivatedElementInfo *)element WK_API_AVAILABLE(ios(10.0));
    157145- (void)_webView:(WKWebView *)webView alternateActionForURL:(NSURL *)url WK_API_AVAILABLE(ios(10.0));
     
    160148- (NSUInteger)_webView:(WKWebView *)webView indexIntoAttachmentListForElement:(_WKActivatedElementInfo *)element WK_API_AVAILABLE(ios(10.3));
    161149- (UIEdgeInsets)_webView:(WKWebView *)webView finalObscuredInsetsForScrollView:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset WK_API_AVAILABLE(ios(9.0));
    162 - (UIViewController *)_webView:(WKWebView *)webView previewViewControllerForURL:(NSURL *)url defaultActions:(NSArray<_WKElementAction *> *)actions elementInfo:(_WKActivatedElementInfo *)elementInfo WK_API_DEPRECATED_WITH_REPLACEMENT("webView:contextMenuConfigurationForElement:", ios(9.0, WK_IOS_TBA));
    163 - (UIViewController *)_webView:(WKWebView *)webView previewViewControllerForAnimatedImageAtURL:(NSURL *)url defaultActions:(NSArray<_WKElementAction *> *)actions elementInfo:(_WKActivatedElementInfo *)elementInfo imageSize:(CGSize)imageSize WK_API_DEPRECATED_WITH_REPLACEMENT("webView:contextMenuConfigurationForElement:", ios(9.0, WK_IOS_TBA));
     150- (UIViewController *)_webView:(WKWebView *)webView previewViewControllerForURL:(NSURL *)url defaultActions:(NSArray<_WKElementAction *> *)actions elementInfo:(_WKActivatedElementInfo *)elementInfo WK_API_AVAILABLE(ios(9.0));
     151- (UIViewController *)_webView:(WKWebView *)webView previewViewControllerForAnimatedImageAtURL:(NSURL *)url defaultActions:(NSArray<_WKElementAction *> *)actions elementInfo:(_WKActivatedElementInfo *)elementInfo imageSize:(CGSize)imageSize WK_API_AVAILABLE(ios(9.0));
    164152- (UIViewController *)_presentingViewControllerForWebView:(WKWebView *)webView WK_API_AVAILABLE(ios(10.0));
    165153- (void)_webView:(WKWebView *)webView getAlternateURLFromImage:(UIImage *)image completionHandler:(void (^)(NSURL *alternateURL, NSDictionary *userInfo))completionHandler WK_API_AVAILABLE(ios(11.0));
    166154- (NSURL *)_webView:(WKWebView *)webView alternateURLFromImage:(UIImage *)image userInfo:(NSDictionary **)userInfo WK_API_AVAILABLE(ios(11.0));
    167 - (UIViewController *)_webView:(WKWebView *)webView previewViewControllerForImage:(UIImage *)image alternateURL:(NSURL *)url defaultActions:(NSArray<_WKElementAction *> *)actions elementInfo:(_WKActivatedElementInfo *)elementInfo WK_API_DEPRECATED_WITH_REPLACEMENT("webView:contextMenuConfigurationForElement:", ios(11.0, WK_IOS_TBA));
     155- (UIViewController *)_webView:(WKWebView *)webView previewViewControllerForImage:(UIImage *)image alternateURL:(NSURL *)url defaultActions:(NSArray<_WKElementAction *> *)actions elementInfo:(_WKActivatedElementInfo *)elementInfo WK_API_AVAILABLE(ios(11.0));
    168156- (NSArray *)_webView:(WKWebView *)webView adjustedDataInteractionItemProviders:(NSArray *)originalItemProviders WK_API_AVAILABLE(ios(11.0));
    169157- (NSArray *)_webView:(WKWebView *)webView adjustedDataInteractionItemProvidersForItemProvider:(id)itemProvider representingObjects:(NSArray *)representingObjects additionalData:(NSDictionary *)additionalData WK_API_AVAILABLE(ios(11.0));
  • trunk/Source/WebKit/UIProcess/API/Cocoa/_WKActivatedElementInfo.h

    r246137 r246157  
    4848@property (nonatomic, readonly) CGRect boundingRect;
    4949@property (nonatomic, readonly) NSString *ID WK_API_AVAILABLE(macos(10.12), ios(10.0));
    50 @property (nonatomic, readonly) BOOL isAnimatedImage WK_API_AVAILABLE(macos(WK_MAC_TBA), ios(WK_IOS_TBA));
    5150#if TARGET_OS_IPHONE
    5251@property (nonatomic, readonly) NSDictionary *userInfo WK_API_AVAILABLE(ios(11.0));
  • trunk/Source/WebKit/UIProcess/API/Cocoa/_WKActivatedElementInfo.mm

    r246137 r246157  
    5252    RetainPtr<NSImage> _nsImage;
    5353#endif
    54     BOOL _animatedImage;
    5554}
    5655
     
    8382    _image = information.image;
    8483    _ID = information.idAttribute;
    85     _animatedImage = information.isAnimatedImage;
    8684   
    8785    return self;
     
    139137}
    140138
    141 - (BOOL)isAnimatedImage
    142 {
    143     return _animatedImage;
    144 }
    145 
    146139#if PLATFORM(IOS_FAMILY)
    147140- (NSDictionary *)userInfo
  • trunk/Source/WebKit/UIProcess/Cocoa/WebViewImpl.h

    r246137 r246157  
    141141class WebPageProxy;
    142142class WebProcessPool;
    143 class WebProcessProxy;
    144143struct ColorSpaceData;
    145144struct WebHitTestResultData;
  • trunk/Source/WebKit/UIProcess/Cocoa/WebViewImpl.mm

    r246137 r246157  
    15701570    NSView *webView = m_view.getAutoreleased();
    15711571
    1572     if (direction == WebCore::FocusDirectionForward) {
     1572    if (direction == FocusDirectionForward) {
    15731573        // Since we're trying to move focus out of m_webView, and because
    15741574        // m_webView may contain subviews within it, we ask it for the next key
     
    36123612        if ([parameter isKindOfClass:[NSValue class]]) {
    36133613            NSRect rect = [(NSValue *)parameter rectValue];
    3614             return [NSValue valueWithRect:m_pageClient->rootViewToScreen(WebCore::IntRect(rect))];
     3614            return [NSValue valueWithRect:m_pageClient->rootViewToScreen(IntRect(rect))];
    36153615        }
    36163616    }
  • trunk/Source/WebKit/UIProcess/ios/WKActionSheetAssistant.h

    r246137 r246157  
    3939@class WKActionSheetAssistant;
    4040@class _WKActivatedElementInfo;
    41 @class _WKElementAction;
    4241@protocol WKActionSheetDelegate;
    4342
     
    7877- (void)cleanupSheet;
    7978- (void)updateSheetPosition;
    80 - (RetainPtr<NSArray<_WKElementAction *>>)defaultActionsForLinkSheet:(_WKActivatedElementInfo *)elementInfo;
    81 - (RetainPtr<NSArray<_WKElementAction *>>)defaultActionsForImageSheet:(_WKActivatedElementInfo *)elementInfo;
     79- (RetainPtr<NSArray>)defaultActionsForLinkSheet:(_WKActivatedElementInfo *)elementInfo;
     80- (RetainPtr<NSArray>)defaultActionsForImageSheet:(_WKActivatedElementInfo *)elementInfo;
    8281- (BOOL)isShowingSheet;
    8382- (void)interactionDidStartWithPositionInformation:(const WebKit::InteractionInformationAtPosition&)information;
  • trunk/Source/WebKit/UIProcess/ios/WKActionSheetAssistant.mm

    r246137 r246157  
    530530}
    531531
    532 - (RetainPtr<NSArray<_WKElementAction *>>)defaultActionsForLinkSheet:(_WKActivatedElementInfo *)elementInfo
     532- (RetainPtr<NSArray>)defaultActionsForLinkSheet:(_WKActivatedElementInfo *)elementInfo
    533533{
    534534    NSURL *targetURL = [elementInfo URL];
     
    557557}
    558558
    559 - (RetainPtr<NSArray<_WKElementAction *>>)defaultActionsForImageSheet:(_WKActivatedElementInfo *)elementInfo
     559- (RetainPtr<NSArray>)defaultActionsForImageSheet:(_WKActivatedElementInfo *)elementInfo
    560560{
    561561    NSURL *targetURL = [elementInfo URL];
  • trunk/Source/WebKit/UIProcess/ios/WKContentView.h

    r246137 r246157  
    5555@package
    5656    RefPtr<WebKit::WebPageProxy> _page;
    57     WKWebView *_webView; // FIXME: This should be made a WeakObjCPtr once everything that refers to it is moved to OpenSource.
     57    WKWebView *_webView;
    5858}
    5959
  • trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm

    r246137 r246157  
    4343#import "UIKitSPI.h"
    4444#import "WKActionSheetAssistant.h"
    45 #import "WKContextMenuElementInfoInternal.h"
    4645#import "WKDatePickerViewController.h"
    4746#import "WKDrawingCoordinator.h"
     
    75177516            if ([uiDelegate respondsToSelector:@selector(_webView:previewViewControllerForAnimatedImageAtURL:defaultActions:elementInfo:imageSize:)]) {
    75187517                RetainPtr<NSArray> actions = [_actionSheetAssistant defaultActionsForImageSheet:animatedImageElementInfo.get()];
    7519                 ALLOW_DEPRECATED_DECLARATIONS_BEGIN
    75207518                return [uiDelegate _webView:_webView previewViewControllerForAnimatedImageAtURL:targetURL defaultActions:actions.get() elementInfo:animatedImageElementInfo.get() imageSize:_positionInformation.image->size()];
    7521                 ALLOW_DEPRECATED_DECLARATIONS_END
    75227519            }
    75237520        }
     
    75417538        }
    75427539
    7543         ALLOW_DEPRECATED_DECLARATIONS_BEGIN
    75447540        if ([uiDelegate respondsToSelector:@selector(_webView:previewViewControllerForURL:defaultActions:elementInfo:)])
    75457541            return [uiDelegate _webView:_webView previewViewControllerForURL:targetURL defaultActions:actions.get() elementInfo:elementInfo.get()];
     
    75477543        if ([uiDelegate respondsToSelector:@selector(_webView:previewViewControllerForURL:)])
    75487544            return [uiDelegate _webView:_webView previewViewControllerForURL:targetURL];
    7549         ALLOW_DEPRECATED_DECLARATIONS_END
    7550 
    75517545        return nil;
    75527546    }
     
    75697563        _page->startInteractionWithElementAtPosition(_positionInformation.request.point);
    75707564
    7571         ALLOW_DEPRECATED_DECLARATIONS_BEGIN
    75727565        if ([uiDelegate respondsToSelector:@selector(_webView:willPreviewImageWithURL:)])
    75737566            [uiDelegate _webView:_webView willPreviewImageWithURL:targetURL];
    7574         ALLOW_DEPRECATED_DECLARATIONS_END
    75757567
    75767568        auto defaultActions = [_actionSheetAssistant defaultActionsForImageSheet:elementInfo.get()];
    75777569        if (imageInfo && [uiDelegate respondsToSelector:@selector(_webView:previewViewControllerForImage:alternateURL:defaultActions:elementInfo:)]) {
    7578             ALLOW_DEPRECATED_DECLARATIONS_BEGIN
    75797570            UIViewController *previewViewController = [uiDelegate _webView:_webView previewViewControllerForImage:uiImage.get() alternateURL:alternateURL.get() defaultActions:defaultActions.get() elementInfo:elementInfo.get()];
    7580             ALLOW_DEPRECATED_DECLARATIONS_END
    75817571            if (previewViewController)
    75827572                return previewViewController;
     
    75977587            if (imageURL.isEmpty() || !(imageURL.protocolIsInHTTPFamily() || imageURL.protocolIs("data")))
    75987588                return;
    7599             ALLOW_DEPRECATED_DECLARATIONS_BEGIN
    76007589            [uiDelegate _webView:_webView commitPreviewedImageWithURL:(NSURL *)imageURL];
    7601             ALLOW_DEPRECATED_DECLARATIONS_END
    76027590            return;
    76037591        }
     
    76137601
    76147602    if ([uiDelegate respondsToSelector:@selector(_webView:commitPreviewedViewController:)]) {
    7615         ALLOW_DEPRECATED_DECLARATIONS_BEGIN
    76167603        [uiDelegate _webView:_webView commitPreviewedViewController:viewController];
    7617         ALLOW_DEPRECATED_DECLARATIONS_END
    76187604        return;
    76197605    }
     
    76397625{
    76407626    id<WKUIDelegatePrivate> uiDelegate = static_cast<id <WKUIDelegatePrivate>>([_webView UIDelegate]);
    7641     ALLOW_DEPRECATED_DECLARATIONS_BEGIN
    76427627    if ([uiDelegate respondsToSelector:@selector(_webView:didDismissPreviewViewController:committing:)])
    76437628        [uiDelegate _webView:_webView didDismissPreviewViewController:viewController committing:committing];
    76447629    else if ([uiDelegate respondsToSelector:@selector(_webView:didDismissPreviewViewController:)])
    76457630        [uiDelegate _webView:_webView didDismissPreviewViewController:viewController];
    7646     ALLOW_DEPRECATED_DECLARATIONS_END
    7647 
     7631   
    76487632    [_webView _didDismissForcePressPreview];
    76497633}
  • trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj

    r246137 r246157  
    10751075                5C5D238C227A2CDA000B9BDA /* _WKCustomHeaderFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C5D2389227A1892000B9BDA /* _WKCustomHeaderFields.h */; settings = {ATTRIBUTES = (Private, ); }; };
    10761076                5C62FDF91EFC271C00CE072E /* WKURLSchemeTaskPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C62FDF81EFC263C00CE072E /* WKURLSchemeTaskPrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
    1077                 5C795D70229F373F003FF1C4 /* WKContextMenuElementInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE0C369229F2D4A003695F0 /* WKContextMenuElementInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
    1078                 5C795D71229F3757003FF1C4 /* WKContextMenuElementInfoPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE0C36A229F2D4A003695F0 /* WKContextMenuElementInfoPrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
    10791077                5C7FB47021E97DC5009E3241 /* WebCookieJar.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C7FB46F21E97C0C009E3241 /* WebCookieJar.h */; };
    10801078                5C8BC797218CBB4800813886 /* SafeBrowsing.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 5C8BC796218CB58A00813886 /* SafeBrowsing.xcassets */; };
     
    35793577                5CD2864F1E722F440094FDC8 /* WKContentRuleListStoreInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKContentRuleListStoreInternal.h; sourceTree = "<group>"; };
    35803578                5CD286501E722F440094FDC8 /* WKContentRuleListStorePrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKContentRuleListStorePrivate.h; sourceTree = "<group>"; };
    3581                 5CE0C366229F2D3D003695F0 /* APIContextMenuElementInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = APIContextMenuElementInfo.cpp; sourceTree = "<group>"; };
    3582                 5CE0C367229F2D3E003695F0 /* APIContextMenuElementInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APIContextMenuElementInfo.h; sourceTree = "<group>"; };
    3583                 5CE0C368229F2D4A003695F0 /* WKContextMenuElementInfo.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKContextMenuElementInfo.mm; sourceTree = "<group>"; };
    3584                 5CE0C369229F2D4A003695F0 /* WKContextMenuElementInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKContextMenuElementInfo.h; sourceTree = "<group>"; };
    3585                 5CE0C36A229F2D4A003695F0 /* WKContextMenuElementInfoPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKContextMenuElementInfoPrivate.h; sourceTree = "<group>"; };
    3586                 5CE0C36B229F2D4B003695F0 /* WKContextMenuElementInfoInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKContextMenuElementInfoInternal.h; sourceTree = "<group>"; };
    35873579                5CE85B1F1C88E6430070BFCE /* PingLoad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PingLoad.h; sourceTree = "<group>"; };
    35883580                5CE9120B2293C1E0005BEC78 /* WKMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKMain.h; sourceTree = "<group>"; };
     
    62666258                                5CD2864F1E722F440094FDC8 /* WKContentRuleListStoreInternal.h */,
    62676259                                5CD286501E722F440094FDC8 /* WKContentRuleListStorePrivate.h */,
    6268                                 5CE0C369229F2D4A003695F0 /* WKContextMenuElementInfo.h */,
    6269                                 5CE0C368229F2D4A003695F0 /* WKContextMenuElementInfo.mm */,
    6270                                 5CE0C36B229F2D4B003695F0 /* WKContextMenuElementInfoInternal.h */,
    6271                                 5CE0C36A229F2D4A003695F0 /* WKContextMenuElementInfoPrivate.h */,
    62726260                                1AF4592D19464B2000F9D4A2 /* WKError.h */,
    62736261                                1AF4592C19464B2000F9D4A2 /* WKError.mm */,
     
    77367724                                7C3A06A61AAB903E009D74BA /* APIContentRuleListStore.h */,
    77377725                                076E884D1A13CADF005E90FC /* APIContextMenuClient.h */,
    7738                                 5CE0C366229F2D3D003695F0 /* APIContextMenuElementInfo.cpp */,
    7739                                 5CE0C367229F2D3E003695F0 /* APIContextMenuElementInfo.h */,
    77407726                                5C5D238A227A1D9B000B9BDA /* APICustomHeaderFields.h */,
    77417727                                7A821F4F1E2F7A5C00604577 /* APICustomProtocolManagerClient.h */,
     
    99149900                                1A445BA1184D5FC1004B3414 /* WKContextHistoryClient.h in Headers */,
    99159901                                1A445B9F184D5FB5004B3414 /* WKContextInjectedBundleClient.h in Headers */,
    9916                                 5C795D70229F373F003FF1C4 /* WKContextMenuElementInfo.h in Headers */,
    9917                                 5C795D71229F3757003FF1C4 /* WKContextMenuElementInfoPrivate.h in Headers */,
    99189902                                51A555F6128C6C47009ABCEC /* WKContextMenuItem.h in Headers */,
    99199903                                51A55601128C6D92009ABCEC /* WKContextMenuItemTypes.h in Headers */,
Note: See TracChangeset for help on using the changeset viewer.