Changeset 204535 in webkit


Ignore:
Timestamp:
Aug 16, 2016, 3:51:27 PM (9 years ago)
Author:
Simon Fraser
Message:

[iOS WK2] Clean up form select code
https://bugs.webkit.org/show_bug.cgi?id=160915

Reviewed by Enrica Casucci.

Some minor forms-related cleanup:

  1. Give WKFormSelectPopover and WKFormSelectPicker their own header files, making

things easier to find.

  1. Remove WKContentView *_view member variables from classes which also stored

the view in their base classes.

Sort the project file.

  • UIProcess/ios/forms/WKFormPopover.h:
  • UIProcess/ios/forms/WKFormPopover.mm:

(-[WKFormRotatingAccessoryPopover accessoryDone]):
(-[WKFormRotatingAccessoryPopover initWithView:]): Deleted.

  • UIProcess/ios/forms/WKFormSelectControl.h:
  • UIProcess/ios/forms/WKFormSelectControl.mm:
  • UIProcess/ios/forms/WKFormSelectPicker.h: Copied from Source/WebKit2/UIProcess/ios/forms/WKFormSelectControl.h.
  • UIProcess/ios/forms/WKFormSelectPicker.mm:
  • UIProcess/ios/forms/WKFormSelectPopover.h: Copied from Source/WebKit2/UIProcess/ios/forms/WKFormSelectControl.h.
  • UIProcess/ios/forms/WKFormSelectPopover.mm:

(-[WKSelectPopover initWithView:hasGroups:]):

  • WebKit2.xcodeproj/project.pbxproj:
Location:
trunk/Source/WebKit2
Files:
8 edited
2 copied

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r204526 r204535  
     12016-08-16  Simon Fraser  <simon.fraser@apple.com>
     2
     3        [iOS WK2] Clean up form select code
     4        https://bugs.webkit.org/show_bug.cgi?id=160915
     5
     6        Reviewed by Enrica Casucci.
     7       
     8        Some minor forms-related cleanup:
     9        1. Give WKFormSelectPopover and WKFormSelectPicker their own header files, making
     10        things easier to find.
     11       
     12        2. Remove WKContentView *_view member variables from classes which also stored
     13        the view in their base classes.
     14       
     15        Sort the project file.
     16
     17        * UIProcess/ios/forms/WKFormPopover.h:
     18        * UIProcess/ios/forms/WKFormPopover.mm:
     19        (-[WKFormRotatingAccessoryPopover accessoryDone]):
     20        (-[WKFormRotatingAccessoryPopover initWithView:]): Deleted.
     21        * UIProcess/ios/forms/WKFormSelectControl.h:
     22        * UIProcess/ios/forms/WKFormSelectControl.mm:
     23        * UIProcess/ios/forms/WKFormSelectPicker.h: Copied from Source/WebKit2/UIProcess/ios/forms/WKFormSelectControl.h.
     24        * UIProcess/ios/forms/WKFormSelectPicker.mm:
     25        * UIProcess/ios/forms/WKFormSelectPopover.h: Copied from Source/WebKit2/UIProcess/ios/forms/WKFormSelectControl.h.
     26        * UIProcess/ios/forms/WKFormSelectPopover.mm:
     27        (-[WKSelectPopover initWithView:hasGroups:]):
     28        * WebKit2.xcodeproj/project.pbxproj:
     29
    1302016-08-16  Daniel Bates  <dabates@apple.com>
    231
  • trunk/Source/WebKit2/UIProcess/ios/forms/WKFormPopover.h

    r184716 r204535  
    3838- (UIPopoverArrowDirection)popoverArrowDirections;
    3939
    40 @property(nonatomic, assign) CGPoint presentationPoint;
     40@property (nonatomic, readonly) WKContentView *view;
     41
     42@property (nonatomic, assign) CGPoint presentationPoint;
    4143#pragma clang diagnostic push
    4244#pragma clang diagnostic ignored "-Wdeprecated-declarations"
    43 @property(nonatomic, retain) UIPopoverController *popoverController;
     45@property (nonatomic, retain) UIPopoverController *popoverController;
    4446#pragma clang diagnostic pop
    45 @property(nonatomic, assign) id <WKRotatingPopoverDelegate> dismissionDelegate;
     47@property (nonatomic, assign) id <WKRotatingPopoverDelegate> dismissionDelegate;
    4648@end
    4749
  • trunk/Source/WebKit2/UIProcess/ios/forms/WKFormPopover.mm

    r184716 r204535  
    4040#pragma clang diagnostic ignored "-Wdeprecated-declarations"
    4141
    42 @implementation WKFormRotatingAccessoryPopover {
    43     WKContentView *_view;
    44 }
     42@implementation WKFormRotatingAccessoryPopover
    4543
    4644- (id)initWithView:(WKContentView *)view
     
    4846    if (!(self = [super initWithView:view]))
    4947        return nil;
    50     _view = view;
    5148    self.dismissionDelegate = self;
    5249    return self;
     
    5552- (void)accessoryDone
    5653{
    57     [_view accessoryDone];
     54    [self.view accessoryDone];
    5855}
    5956
  • trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectControl.h

    r204525 r204535  
    4444@end
    4545
    46 @interface WKSelectPopover : WKFormRotatingAccessoryPopover<WKFormControl>
    47 - (instancetype)initWithView:(WKContentView *)view hasGroups:(BOOL)hasGroups;
    48 - (void)_userActionDismissedPopover:(id)sender;
    49 @end
    50 
    51 @interface WKSelectSinglePicker : UIPickerView <WKFormControl, UIPickerViewDataSource, UIPickerViewDelegate>
    52 - (instancetype)initWithView:(WKContentView *)view;
    53 @end
    54 
    55 @interface WKMultipleSelectPicker : UIPickerView <WKFormControl, UIPickerViewDataSource, UIPickerViewDelegate>
    56 - (instancetype)initWithView:(WKContentView *)view;
    57 @end
    58 
    5946@protocol WKSelectTesting
    6047@optional
     
    6350
    6451#endif // PLATFORM(IOS)
    65 
  • trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectControl.mm

    r204525 r204535  
    3333#import "WKContentViewInteraction.h"
    3434#import "WKFormPopover.h"
     35#import "WKFormSelectPicker.h"
     36#import "WKFormSelectPopover.h"
    3537#import "WebPageProxy.h"
    3638#import <UIKit/UIPickerView.h>
  • trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectPicker.h

    r204534 r204535  
    11/*
    2  * Copyright (C) 2014 Apple Inc. All rights reserved.
     2 * Copyright (C) 2016 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    2626#if PLATFORM(IOS)
    2727
    28 #import "AssistedNodeInformation.h"
    29 #import "UIKitSPI.h"
    3028#import "WKFormPeripheral.h"
    31 #import "WKFormPopover.h"
    3229#import <UIKit/UIPickerView.h>
    3330
    34 CGFloat adjustedFontSize(CGFloat textWidth, UIFont *, CGFloat initialFontSize, const Vector<WebKit::OptionItem>& items);
    35 
    3631@class WKContentView;
    37 
    38 @interface WKFormSelectControl : NSObject<WKFormPeripheral>
    39 - (instancetype)initWithView:(WKContentView *)view;
    40 @end
    41 
    42 @interface WKFormSelectControl(WKTesting)
    43 - (void)selectRow:(NSInteger)rowIndex inComponent:(NSInteger)componentIndex extendingSelection:(BOOL)extendingSelection;
    44 @end
    45 
    46 @interface WKSelectPopover : WKFormRotatingAccessoryPopover<WKFormControl>
    47 - (instancetype)initWithView:(WKContentView *)view hasGroups:(BOOL)hasGroups;
    48 - (void)_userActionDismissedPopover:(id)sender;
    49 @end
    5032
    5133@interface WKSelectSinglePicker : UIPickerView <WKFormControl, UIPickerViewDataSource, UIPickerViewDelegate>
     
    5739@end
    5840
    59 @protocol WKSelectTesting
    60 @optional
    61 - (void)selectRow:(NSInteger)rowIndex inComponent:(NSInteger)componentIndex extendingSelection:(BOOL)extendingSelection;
    62 @end
    63 
    6441#endif // PLATFORM(IOS)
    65 
  • trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectPicker.mm

    r204525 r204535  
    2525
    2626#import "config.h"
    27 #import "WKFormSelectControl.h"
     27#import "WKFormSelectPicker.h"
    2828
    2929#if PLATFORM(IOS)
     
    3333#import "WKContentViewInteraction.h"
    3434#import "WKFormPopover.h"
     35#import "WKFormSelectControl.h"
    3536#import "WebPageProxy.h"
    3637
  • trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectPopover.h

    r204534 r204535  
    11/*
    2  * Copyright (C) 2014 Apple Inc. All rights reserved.
     2 * Copyright (C) 2016 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    2626#if PLATFORM(IOS)
    2727
    28 #import "AssistedNodeInformation.h"
    29 #import "UIKitSPI.h"
    3028#import "WKFormPeripheral.h"
    3129#import "WKFormPopover.h"
    32 #import <UIKit/UIPickerView.h>
    33 
    34 CGFloat adjustedFontSize(CGFloat textWidth, UIFont *, CGFloat initialFontSize, const Vector<WebKit::OptionItem>& items);
    3530
    3631@class WKContentView;
    37 
    38 @interface WKFormSelectControl : NSObject<WKFormPeripheral>
    39 - (instancetype)initWithView:(WKContentView *)view;
    40 @end
    41 
    42 @interface WKFormSelectControl(WKTesting)
    43 - (void)selectRow:(NSInteger)rowIndex inComponent:(NSInteger)componentIndex extendingSelection:(BOOL)extendingSelection;
    44 @end
    4532
    4633@interface WKSelectPopover : WKFormRotatingAccessoryPopover<WKFormControl>
     
    4936@end
    5037
    51 @interface WKSelectSinglePicker : UIPickerView <WKFormControl, UIPickerViewDataSource, UIPickerViewDelegate>
    52 - (instancetype)initWithView:(WKContentView *)view;
    53 @end
    54 
    55 @interface WKMultipleSelectPicker : UIPickerView <WKFormControl, UIPickerViewDataSource, UIPickerViewDelegate>
    56 - (instancetype)initWithView:(WKContentView *)view;
    57 @end
    58 
    59 @protocol WKSelectTesting
    60 @optional
    61 - (void)selectRow:(NSInteger)rowIndex inComponent:(NSInteger)componentIndex extendingSelection:(BOOL)extendingSelection;
    62 @end
    63 
    6438#endif // PLATFORM(IOS)
    65 
  • trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectPopover.mm

    r204525 r204535  
    2525
    2626#import "config.h"
    27 #import "WKFormSelectControl.h"
     27#import "WKFormSelectPopover.h"
    2828
    2929#if PLATFORM(IOS)
     
    3333#import "WKContentViewInteraction.h"
    3434#import "WKFormPopover.h"
     35#import "WKFormSelectControl.h"
    3536#import "WebPageProxy.h"
    3637#import <UIKit/UIPickerView.h>
     
    373374
    374375@implementation WKSelectPopover {
    375     WKContentView *_view;
    376376    RetainPtr<WKSelectTableViewController> _tableViewController;
    377377}
     
    382382        return nil;
    383383   
    384     _view = view;
    385384    CGRect frame;
    386385    frame.origin = CGPointZero;
     
    392391    UINavigationController *navController = nil;
    393392    NSString *title = view.assistedNodeInformation.title;
    394     BOOL needsNavigationController = (_view && _UIApplicationUsesLegacyUI()) || [title length];
     393    BOOL needsNavigationController = (self.view && _UIApplicationUsesLegacyUI()) || [title length];
    395394    if (needsNavigationController) {
    396395        navController = [[UINavigationController alloc] initWithRootViewController:_tableViewController.get()];
    397396        popoverViewController = navController;
    398397       
    399         if (_view.assistedNodeInformation.isMultiSelect && _UIApplicationUsesLegacyUI())
     398        if (self.view.assistedNodeInformation.isMultiSelect && _UIApplicationUsesLegacyUI())
    400399            _tableViewController.get().navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(_userActionDismissedPopover:)] autorelease];
    401400    }
  • trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj

    r204461 r204535  
    6262                07A5EBBB1C7BA43E00B9CA69 /* WKFrameHandleRef.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07A5EBB91C7BA43E00B9CA69 /* WKFrameHandleRef.cpp */; };
    6363                07A5EBBC1C7BA43E00B9CA69 /* WKFrameHandleRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 07A5EBBA1C7BA43E00B9CA69 /* WKFrameHandleRef.h */; settings = {ATTRIBUTES = (Private, ); }; };
     64                0F08CF521D63C13A00B48DF1 /* WKFormSelectPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F08CF511D63C13A00B48DF1 /* WKFormSelectPicker.h */; };
     65                0F08CF541D63C14000B48DF1 /* WKFormSelectPopover.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F08CF531D63C14000B48DF1 /* WKFormSelectPopover.h */; };
    6466                0F0C365818C051BA00F607D7 /* RemoteLayerTreeHostIOS.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F0C365718C051BA00F607D7 /* RemoteLayerTreeHostIOS.mm */; };
    6567                0F0C365A18C0555800F607D7 /* LayerRepresentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F0C365918C0555800F607D7 /* LayerRepresentation.h */; };
     
    20262028                0867D6A5FE840307C02AAC07 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
    20272029                089C1667FE841158C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
     2030                0F08CF511D63C13A00B48DF1 /* WKFormSelectPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WKFormSelectPicker.h; path = ios/forms/WKFormSelectPicker.h; sourceTree = "<group>"; };
     2031                0F08CF531D63C14000B48DF1 /* WKFormSelectPopover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WKFormSelectPopover.h; path = ios/forms/WKFormSelectPopover.h; sourceTree = "<group>"; };
    20282032                0F0C365718C051BA00F607D7 /* RemoteLayerTreeHostIOS.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = RemoteLayerTreeHostIOS.mm; path = ios/RemoteLayerTreeHostIOS.mm; sourceTree = "<group>"; };
    20292033                0F0C365918C0555800F607D7 /* LayerRepresentation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LayerRepresentation.h; path = UIProcess/Cocoa/LayerRepresentation.h; sourceTree = SOURCE_ROOT; };
     
    57805784                                7CB16FE31724B9B5007A0A95 /* com.apple.QuickTime Plugin.plugin.sb */,
    57815785                                7CB16FE41724B9B5007A0A95 /* com.apple.WebKit.plugin-common.sb */,
     5786                                7A5E39491D5BD8A700B4B7CE /* com.macromedia.Flash Player ESR.plugin.sb */,
    57825787                                7CB16FE51724B9B5007A0A95 /* com.macromedia.Flash Player.plugin.sb */,
    5783                                 7A5E39491D5BD8A700B4B7CE /* com.macromedia.Flash Player ESR.plugin.sb */,
    57845788                                7CB16FE61724B9B5007A0A95 /* com.microsoft.SilverlightPlugin.sb */,
    57855789                                7CB16FE71724B9B5007A0A95 /* com.oracle.java.JavaAppletPlugin.sb */,
     
    72137217                                C54256B418BEC18C00DE4179 /* WKFormSelectControl.h */,
    72147218                                C57193BD18C14A43002D0F12 /* WKFormSelectControl.mm */,
     7219                                0F08CF511D63C13A00B48DF1 /* WKFormSelectPicker.h */,
    72157220                                C57193B918C149D0002D0F12 /* WKFormSelectPicker.mm */,
     7221                                0F08CF531D63C14000B48DF1 /* WKFormSelectPopover.h */,
    72167222                                C57193BA18C149D0002D0F12 /* WKFormSelectPopover.mm */,
    72177223                        );
     
    74487454                                1AE286801C7F92C00069AC4F /* _WKWebsiteDataSizeInternal.h in Headers */,
    74497455                                1AFB4C721ADF155D00B33339 /* _WKWebsiteDataStore.h in Headers */,
    7450                                 515BE1B31D5902DD00DD7C68 /* GamepadData.h in Headers */,
    74517456                                1A4A93B71AEB08EA00150E9C /* _WKWebsiteDataStoreInternal.h in Headers */,
    74527457                                A115DC72191D82DA00DA8072 /* _WKWebViewPrintFormatter.h in Headers */,
     
    75827587                                BCE81D8D1319F7EF00241910 /* FontInfo.h in Headers */,
    75837588                                1AE00D611831792100087DD7 /* FrameLoadState.h in Headers */,
     7589                                515BE1B31D5902DD00DD7C68 /* GamepadData.h in Headers */,
    75847590                                BC17753F118BABF0007D9E9A /* GenericCallback.h in Headers */,
    75857591                                BC06F42F12DBB9B6002D78DE /* GeolocationPermissionRequestManager.h in Headers */,
     
    75897595                                2DA049B8180CCD0A00AAFA9E /* GraphicsLayerCARemote.h in Headers */,
    75907596                                C0CE72AD1247E78D00BC0EC4 /* HandleMessage.h in Headers */,
    7591                                 515BE1A91D55293400DD7C68 /* UIGamepadProvider.h in Headers */,
    75927597                                1AC75A1B1B3368270056745B /* HangDetectionDisabler.h in Headers */,
    75937598                                37F90DE31376560E0051CF68 /* HTTPCookieAcceptPolicy.h in Headers */,
     
    77757780                                E18E690C169B563F009B6670 /* SecItemShimProxy.h in Headers */,
    77767781                                E18E6918169B667B009B6670 /* SecItemShimProxyMessages.h in Headers */,
    7777                                 515BE1B51D5917FF00DD7C68 /* UIGamepad.h in Headers */,
    77787782                                514D9F5719119D35000063A7 /* ServicesController.h in Headers */,
    77797783                                1AFDE65A1954A42B00C48FFA /* SessionState.h in Headers */,
     
    78027806                                1AF05D8714688348008B1E81 /* TiledCoreAnimationDrawingAreaProxy.h in Headers */,
    78037807                                1AFE436618B6C081009C7A48 /* UIDelegate.h in Headers */,
     7808                                515BE1B51D5917FF00DD7C68 /* UIGamepad.h in Headers */,
     7809                                515BE1A91D55293400DD7C68 /* UIGamepadProvider.h in Headers */,
    78047810                                CEE4AE2B1A5DCF430002F49B /* UIKitSPI.h in Headers */,
    78057811                                1A64245E12DE29A100CAAE2C /* UpdateInfo.h in Headers */,
     
    78777883                                BCB9F6A01123A84B00A137E0 /* WebFramePolicyListenerProxy.h in Headers */,
    78787884                                BC9B38A110F538BE00443A15 /* WebFrameProxy.h in Headers */,
     7885                                515BE1AB1D555AA000DD7C68 /* WebGamepad.h in Headers */,
     7886                                515BE1791D53FE8F00DD7C68 /* WebGamepadProvider.h in Headers */,
    78797887                                BC1BE1E012D54A410004A228 /* WebGeolocationClient.h in Headers */,
    78807888                                BC0E5FE512D697160012A72A /* WebGeolocationManager.h in Headers */,
     
    79167924                                909854ED12BC4E18000AD080 /* WebMemorySampler.h in Headers */,
    79177925                                BCF69F9A1176CED600471A52 /* WebNavigationDataStore.h in Headers */,
    7918                                 515BE1AB1D555AA000DD7C68 /* WebGamepad.h in Headers */,
    79197926                                7CCCC8FB1A5F50FD008FB0DA /* WebNavigationState.h in Headers */,
    79207927                                31A2EC49148997C200810D71 /* WebNotification.h in Headers */,
     
    80998106                                1AF4592F19464B2000F9D4A2 /* WKError.h in Headers */,
    81008107                                BCFD548C132D82680055D816 /* WKErrorCF.h in Headers */,
    8101                                 515BE1791D53FE8F00DD7C68 /* WebGamepadProvider.h in Headers */,
    81028108                                37B5045219EEF31300CE2CF8 /* WKErrorPrivate.h in Headers */,
    81038109                                BC4075FC124FF0270068F20A /* WKErrorRef.h in Headers */,
     
    81098115                                C54256B818BEC18C00DE4179 /* WKFormPopover.h in Headers */,
    81108116                                C54256BA18BEC18C00DE4179 /* WKFormSelectControl.h in Headers */,
     8117                                0F08CF521D63C13A00B48DF1 /* WKFormSelectPicker.h in Headers */,
     8118                                0F08CF541D63C14000B48DF1 /* WKFormSelectPopover.h in Headers */,
    81118119                                BCE4695A1214EDF4000B98EB /* WKFormSubmissionListener.h in Headers */,
    81128120                                37DFA7001810BB92001F4A9F /* WKFoundation.h in Headers */,
     
    85708578                                E17AE2C316B9C63A001C42F1 /* com.apple.WebKit.NetworkProcess.sb in Resources */,
    85718579                                E11D35AE16B63D1B006D23D7 /* com.apple.WebProcess.sb in Resources */,
     8580                                7A5E394A1D5BD8BE00B4B7CE /* com.macromedia.Flash Player ESR.plugin.sb in Resources */,
    85728581                                8DC2EF530486A6940098B216 /* InfoPlist.strings in Resources */,
    85738582                                93A2A3461D246125002B59D3 /* mediaIcon.pdf in Resources */,
    8574                                 7A5E394A1D5BD8BE00B4B7CE /* com.macromedia.Flash Player ESR.plugin.sb in Resources */,
    85758583                        );
    85768584                        runOnlyForDeploymentPostprocessing = 0;
     
    90469054                                BCE81D8C1319F7EF00241910 /* FontInfo.cpp in Sources */,
    90479055                                1AE00D601831792100087DD7 /* FrameLoadState.cpp in Sources */,
     9056                                515BE1B21D5902DD00DD7C68 /* GamepadData.cpp in Sources */,
    90489057                                BC06F43012DBB9B6002D78DE /* GeolocationPermissionRequestManager.cpp in Sources */,
    90499058                                BC06F44B12DBD1F5002D78DE /* GeolocationPermissionRequestManagerProxy.cpp in Sources */,
     
    91629171                                1A2D82A8127F4EAB001EB962 /* NPRemoteObjectMap.cpp in Sources */,
    91639172                                1A2161B111F37664008AD0F5 /* NPRuntimeObjectMap.cpp in Sources */,
    9164                                 1A08FEE41D593E2A008BA8CB /* WebPluginInfoProvider.cpp in Sources */,
    91659173                                1A2162B011F38971008AD0F5 /* NPRuntimeUtilities.cpp in Sources */,
    91669174                                1A2D84A4127F6AD1001EB962 /* NPVariantData.cpp in Sources */,
     
    92069214                                1A0EC75F124BC7B2007EF4A5 /* PluginProcessProxy.cpp in Sources */,
    92079215                                1A2D90BB1281C931001EB962 /* PluginProcessProxyMac.mm in Sources */,
    9208                                 515BE1B41D5917FF00DD7C68 /* UIGamepad.cpp in Sources */,
    92099216                                1A043B5D124D5E9D00FFBFB5 /* PluginProcessProxyMessageReceiver.cpp in Sources */,
    92109217                                1A043DC2124FF87500FFBFB5 /* PluginProxy.cpp in Sources */,
     
    92259232                                2DDF731618E95060004F5A66 /* RemoteLayerBackingStoreCollection.mm in Sources */,
    92269233                                1AB16AE9164B3A8800290D62 /* RemoteLayerTreeContext.mm in Sources */,
    9227                                 515BE1B21D5902DD00DD7C68 /* GamepadData.cpp in Sources */,
    92289234                                2D29ECD1192F2C2E00984B78 /* RemoteLayerTreeDisplayRefreshMonitor.mm in Sources */,
    92299235                                1AB16ADD1648598400290D62 /* RemoteLayerTreeDrawingArea.mm in Sources */,
     
    92559261                                E1790890169BAA7F006904C7 /* SecItemShimMessageReceiver.cpp in Sources */,
    92569262                                E18E690B169B563F009B6670 /* SecItemShimProxy.cpp in Sources */,
    9257                                 515BE1A71D55293400DD7C68 /* UIGamepadProviderHID.cpp in Sources */,
    92589263                                E18E6917169B667B009B6670 /* SecItemShimProxyMessageReceiver.cpp in Sources */,
    92599264                                514D9F5819119D35000063A7 /* ServicesController.mm in Sources */,
     
    92769281                                1AB31A9616BC688100F6DBC9 /* StorageManagerMessageReceiver.cpp in Sources */,
    92779282                                1A44B95716B737AA00B7BBD8 /* StorageNamespaceImpl.cpp in Sources */,
    9278                                 515BE1771D53FE8700DD7C68 /* WebGamepadProvider.cpp in Sources */,
    92799283                                1AE00D6B18327C1200087DD7 /* StringReference.cpp in Sources */,
    92809284                                296BD85E15019BC30071F424 /* StringUtilities.mm in Sources */,
     
    92859289                                1AF05D8614688348008B1E81 /* TiledCoreAnimationDrawingAreaProxy.mm in Sources */,
    92869290                                1AFE436518B6C081009C7A48 /* UIDelegate.mm in Sources */,
     9291                                515BE1B41D5917FF00DD7C68 /* UIGamepad.cpp in Sources */,
     9292                                515BE1A81D55293400DD7C68 /* UIGamepadProvider.cpp in Sources */,
     9293                                515BE1A71D55293400DD7C68 /* UIGamepadProviderHID.cpp in Sources */,
     9294                                515BE1B71D5A94FD00DD7C68 /* UIGamepadProviderMac.mm in Sources */,
    92879295                                1A64245F12DE29A100CAAE2C /* UpdateInfo.cpp in Sources */,
    92889296                                1AC1336718565B5700F3EC05 /* UserData.cpp in Sources */,
     
    93259333                                7C4ABED41AA8FCB80088AA37 /* WebCompiledContentExtensionData.cpp in Sources */,
    93269334                                BC4A628F147312BE006C681A /* WebConnection.cpp in Sources */,
    9327                                 515BE1A81D55293400DD7C68 /* UIGamepadProvider.cpp in Sources */,
    93289335                                BC4A6291147312BE006C681A /* WebConnectionClient.cpp in Sources */,
    93299336                                1A1FEC1C1627B45700700F6D /* WebConnectionMessageReceiver.cpp in Sources */,
     
    93789385                                CD6F75F4131B66D000D6B21E /* WebFullScreenManagerProxy.cpp in Sources */,
    93799386                                CD73BA47131ACC9A00EEDED2 /* WebFullScreenManagerProxyMessageReceiver.cpp in Sources */,
     9387                                515BE1AA1D555A9B00DD7C68 /* WebGamepad.cpp in Sources */,
     9388                                515BE1771D53FE8700DD7C68 /* WebGamepadProvider.cpp in Sources */,
    93809389                                BC1BE1E112D54A410004A228 /* WebGeolocationClient.cpp in Sources */,
    93819390                                BC0E5FE612D697160012A72A /* WebGeolocationManager.cpp in Sources */,
     
    94679476                                CDA29A2A1CBEB67A00901CCF /* WebPlaybackSessionManagerProxyMessageReceiver.cpp in Sources */,
    94689477                                31D5929E166E060000E6BF02 /* WebPlugInClient.cpp in Sources */,
     9478                                1A08FEE41D593E2A008BA8CB /* WebPluginInfoProvider.cpp in Sources */,
    94699479                                BC5744EF12638FB3006F0F12 /* WebPopupItem.cpp in Sources */,
    94709480                                D3B9484611FF4B6500032B39 /* WebPopupMenu.cpp in Sources */,
     
    94749484                                7C85FD7F19341665000177C4 /* WebPreferencesKeys.cpp in Sources */,
    94759485                                BC84EB1812A7100C0083F2DA /* WebPreferencesMac.mm in Sources */,
    9476                                 515BE1B71D5A94FD00DD7C68 /* UIGamepadProviderMac.mm in Sources */,
    94779486                                BCD598AD112B7FDF00EC8C23 /* WebPreferencesStore.cpp in Sources */,
    94789487                                BC111AE4112F5C2600337BAB /* WebProcess.cpp in Sources */,
     
    95229531                                15739BBE1B42046600D258C1 /* WebUserMediaClient.cpp in Sources */,
    95239532                                52D5A1B71C574A0200DE34A3 /* WebVideoFullscreenManager.mm in Sources */,
    9524                                 515BE1AA1D555A9B00DD7C68 /* WebGamepad.cpp in Sources */,
    95259533                                3F418EF91887BD97002795FD /* WebVideoFullscreenManagerMessageReceiver.cpp in Sources */,
    95269534                                52D5A1B11C57496200DE34A3 /* WebVideoFullscreenManagerProxy.mm in Sources */,
Note: See TracChangeset for help on using the changeset viewer.