Changeset 204535 in webkit
- Timestamp:
- Aug 16, 2016, 3:51:27 PM (9 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 8 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r204526 r204535 1 2016-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 1 30 2016-08-16 Daniel Bates <dabates@apple.com> 2 31 -
trunk/Source/WebKit2/UIProcess/ios/forms/WKFormPopover.h
r184716 r204535 38 38 - (UIPopoverArrowDirection)popoverArrowDirections; 39 39 40 @property(nonatomic, assign) CGPoint presentationPoint; 40 @property (nonatomic, readonly) WKContentView *view; 41 42 @property (nonatomic, assign) CGPoint presentationPoint; 41 43 #pragma clang diagnostic push 42 44 #pragma clang diagnostic ignored "-Wdeprecated-declarations" 43 @property (nonatomic, retain) UIPopoverController *popoverController;45 @property (nonatomic, retain) UIPopoverController *popoverController; 44 46 #pragma clang diagnostic pop 45 @property (nonatomic, assign) id <WKRotatingPopoverDelegate> dismissionDelegate;47 @property (nonatomic, assign) id <WKRotatingPopoverDelegate> dismissionDelegate; 46 48 @end 47 49 -
trunk/Source/WebKit2/UIProcess/ios/forms/WKFormPopover.mm
r184716 r204535 40 40 #pragma clang diagnostic ignored "-Wdeprecated-declarations" 41 41 42 @implementation WKFormRotatingAccessoryPopover { 43 WKContentView *_view; 44 } 42 @implementation WKFormRotatingAccessoryPopover 45 43 46 44 - (id)initWithView:(WKContentView *)view … … 48 46 if (!(self = [super initWithView:view])) 49 47 return nil; 50 _view = view;51 48 self.dismissionDelegate = self; 52 49 return self; … … 55 52 - (void)accessoryDone 56 53 { 57 [ _view accessoryDone];54 [self.view accessoryDone]; 58 55 } 59 56 -
trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectControl.h
r204525 r204535 44 44 @end 45 45 46 @interface WKSelectPopover : WKFormRotatingAccessoryPopover<WKFormControl>47 - (instancetype)initWithView:(WKContentView *)view hasGroups:(BOOL)hasGroups;48 - (void)_userActionDismissedPopover:(id)sender;49 @end50 51 @interface WKSelectSinglePicker : UIPickerView <WKFormControl, UIPickerViewDataSource, UIPickerViewDelegate>52 - (instancetype)initWithView:(WKContentView *)view;53 @end54 55 @interface WKMultipleSelectPicker : UIPickerView <WKFormControl, UIPickerViewDataSource, UIPickerViewDelegate>56 - (instancetype)initWithView:(WKContentView *)view;57 @end58 59 46 @protocol WKSelectTesting 60 47 @optional … … 63 50 64 51 #endif // PLATFORM(IOS) 65 -
trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectControl.mm
r204525 r204535 33 33 #import "WKContentViewInteraction.h" 34 34 #import "WKFormPopover.h" 35 #import "WKFormSelectPicker.h" 36 #import "WKFormSelectPopover.h" 35 37 #import "WebPageProxy.h" 36 38 #import <UIKit/UIPickerView.h> -
trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectPicker.h
r204534 r204535 1 1 /* 2 * Copyright (C) 201 4Apple Inc. All rights reserved.2 * Copyright (C) 2016 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 26 26 #if PLATFORM(IOS) 27 27 28 #import "AssistedNodeInformation.h"29 #import "UIKitSPI.h"30 28 #import "WKFormPeripheral.h" 31 #import "WKFormPopover.h"32 29 #import <UIKit/UIPickerView.h> 33 30 34 CGFloat adjustedFontSize(CGFloat textWidth, UIFont *, CGFloat initialFontSize, const Vector<WebKit::OptionItem>& items);35 36 31 @class WKContentView; 37 38 @interface WKFormSelectControl : NSObject<WKFormPeripheral>39 - (instancetype)initWithView:(WKContentView *)view;40 @end41 42 @interface WKFormSelectControl(WKTesting)43 - (void)selectRow:(NSInteger)rowIndex inComponent:(NSInteger)componentIndex extendingSelection:(BOOL)extendingSelection;44 @end45 46 @interface WKSelectPopover : WKFormRotatingAccessoryPopover<WKFormControl>47 - (instancetype)initWithView:(WKContentView *)view hasGroups:(BOOL)hasGroups;48 - (void)_userActionDismissedPopover:(id)sender;49 @end50 32 51 33 @interface WKSelectSinglePicker : UIPickerView <WKFormControl, UIPickerViewDataSource, UIPickerViewDelegate> … … 57 39 @end 58 40 59 @protocol WKSelectTesting60 @optional61 - (void)selectRow:(NSInteger)rowIndex inComponent:(NSInteger)componentIndex extendingSelection:(BOOL)extendingSelection;62 @end63 64 41 #endif // PLATFORM(IOS) 65 -
trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectPicker.mm
r204525 r204535 25 25 26 26 #import "config.h" 27 #import "WKFormSelect Control.h"27 #import "WKFormSelectPicker.h" 28 28 29 29 #if PLATFORM(IOS) … … 33 33 #import "WKContentViewInteraction.h" 34 34 #import "WKFormPopover.h" 35 #import "WKFormSelectControl.h" 35 36 #import "WebPageProxy.h" 36 37 -
trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectPopover.h
r204534 r204535 1 1 /* 2 * Copyright (C) 201 4Apple Inc. All rights reserved.2 * Copyright (C) 2016 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 26 26 #if PLATFORM(IOS) 27 27 28 #import "AssistedNodeInformation.h"29 #import "UIKitSPI.h"30 28 #import "WKFormPeripheral.h" 31 29 #import "WKFormPopover.h" 32 #import <UIKit/UIPickerView.h>33 34 CGFloat adjustedFontSize(CGFloat textWidth, UIFont *, CGFloat initialFontSize, const Vector<WebKit::OptionItem>& items);35 30 36 31 @class WKContentView; 37 38 @interface WKFormSelectControl : NSObject<WKFormPeripheral>39 - (instancetype)initWithView:(WKContentView *)view;40 @end41 42 @interface WKFormSelectControl(WKTesting)43 - (void)selectRow:(NSInteger)rowIndex inComponent:(NSInteger)componentIndex extendingSelection:(BOOL)extendingSelection;44 @end45 32 46 33 @interface WKSelectPopover : WKFormRotatingAccessoryPopover<WKFormControl> … … 49 36 @end 50 37 51 @interface WKSelectSinglePicker : UIPickerView <WKFormControl, UIPickerViewDataSource, UIPickerViewDelegate>52 - (instancetype)initWithView:(WKContentView *)view;53 @end54 55 @interface WKMultipleSelectPicker : UIPickerView <WKFormControl, UIPickerViewDataSource, UIPickerViewDelegate>56 - (instancetype)initWithView:(WKContentView *)view;57 @end58 59 @protocol WKSelectTesting60 @optional61 - (void)selectRow:(NSInteger)rowIndex inComponent:(NSInteger)componentIndex extendingSelection:(BOOL)extendingSelection;62 @end63 64 38 #endif // PLATFORM(IOS) 65 -
trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectPopover.mm
r204525 r204535 25 25 26 26 #import "config.h" 27 #import "WKFormSelect Control.h"27 #import "WKFormSelectPopover.h" 28 28 29 29 #if PLATFORM(IOS) … … 33 33 #import "WKContentViewInteraction.h" 34 34 #import "WKFormPopover.h" 35 #import "WKFormSelectControl.h" 35 36 #import "WebPageProxy.h" 36 37 #import <UIKit/UIPickerView.h> … … 373 374 374 375 @implementation WKSelectPopover { 375 WKContentView *_view;376 376 RetainPtr<WKSelectTableViewController> _tableViewController; 377 377 } … … 382 382 return nil; 383 383 384 _view = view;385 384 CGRect frame; 386 385 frame.origin = CGPointZero; … … 392 391 UINavigationController *navController = nil; 393 392 NSString *title = view.assistedNodeInformation.title; 394 BOOL needsNavigationController = ( _view && _UIApplicationUsesLegacyUI()) || [title length];393 BOOL needsNavigationController = (self.view && _UIApplicationUsesLegacyUI()) || [title length]; 395 394 if (needsNavigationController) { 396 395 navController = [[UINavigationController alloc] initWithRootViewController:_tableViewController.get()]; 397 396 popoverViewController = navController; 398 397 399 if ( _view.assistedNodeInformation.isMultiSelect && _UIApplicationUsesLegacyUI())398 if (self.view.assistedNodeInformation.isMultiSelect && _UIApplicationUsesLegacyUI()) 400 399 _tableViewController.get().navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(_userActionDismissedPopover:)] autorelease]; 401 400 } -
trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj
r204461 r204535 62 62 07A5EBBB1C7BA43E00B9CA69 /* WKFrameHandleRef.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07A5EBB91C7BA43E00B9CA69 /* WKFrameHandleRef.cpp */; }; 63 63 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 */; }; 64 66 0F0C365818C051BA00F607D7 /* RemoteLayerTreeHostIOS.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F0C365718C051BA00F607D7 /* RemoteLayerTreeHostIOS.mm */; }; 65 67 0F0C365A18C0555800F607D7 /* LayerRepresentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F0C365918C0555800F607D7 /* LayerRepresentation.h */; }; … … 2026 2028 0867D6A5FE840307C02AAC07 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; }; 2027 2029 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>"; }; 2028 2032 0F0C365718C051BA00F607D7 /* RemoteLayerTreeHostIOS.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = RemoteLayerTreeHostIOS.mm; path = ios/RemoteLayerTreeHostIOS.mm; sourceTree = "<group>"; }; 2029 2033 0F0C365918C0555800F607D7 /* LayerRepresentation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LayerRepresentation.h; path = UIProcess/Cocoa/LayerRepresentation.h; sourceTree = SOURCE_ROOT; }; … … 5780 5784 7CB16FE31724B9B5007A0A95 /* com.apple.QuickTime Plugin.plugin.sb */, 5781 5785 7CB16FE41724B9B5007A0A95 /* com.apple.WebKit.plugin-common.sb */, 5786 7A5E39491D5BD8A700B4B7CE /* com.macromedia.Flash Player ESR.plugin.sb */, 5782 5787 7CB16FE51724B9B5007A0A95 /* com.macromedia.Flash Player.plugin.sb */, 5783 7A5E39491D5BD8A700B4B7CE /* com.macromedia.Flash Player ESR.plugin.sb */,5784 5788 7CB16FE61724B9B5007A0A95 /* com.microsoft.SilverlightPlugin.sb */, 5785 5789 7CB16FE71724B9B5007A0A95 /* com.oracle.java.JavaAppletPlugin.sb */, … … 7213 7217 C54256B418BEC18C00DE4179 /* WKFormSelectControl.h */, 7214 7218 C57193BD18C14A43002D0F12 /* WKFormSelectControl.mm */, 7219 0F08CF511D63C13A00B48DF1 /* WKFormSelectPicker.h */, 7215 7220 C57193B918C149D0002D0F12 /* WKFormSelectPicker.mm */, 7221 0F08CF531D63C14000B48DF1 /* WKFormSelectPopover.h */, 7216 7222 C57193BA18C149D0002D0F12 /* WKFormSelectPopover.mm */, 7217 7223 ); … … 7448 7454 1AE286801C7F92C00069AC4F /* _WKWebsiteDataSizeInternal.h in Headers */, 7449 7455 1AFB4C721ADF155D00B33339 /* _WKWebsiteDataStore.h in Headers */, 7450 515BE1B31D5902DD00DD7C68 /* GamepadData.h in Headers */,7451 7456 1A4A93B71AEB08EA00150E9C /* _WKWebsiteDataStoreInternal.h in Headers */, 7452 7457 A115DC72191D82DA00DA8072 /* _WKWebViewPrintFormatter.h in Headers */, … … 7582 7587 BCE81D8D1319F7EF00241910 /* FontInfo.h in Headers */, 7583 7588 1AE00D611831792100087DD7 /* FrameLoadState.h in Headers */, 7589 515BE1B31D5902DD00DD7C68 /* GamepadData.h in Headers */, 7584 7590 BC17753F118BABF0007D9E9A /* GenericCallback.h in Headers */, 7585 7591 BC06F42F12DBB9B6002D78DE /* GeolocationPermissionRequestManager.h in Headers */, … … 7589 7595 2DA049B8180CCD0A00AAFA9E /* GraphicsLayerCARemote.h in Headers */, 7590 7596 C0CE72AD1247E78D00BC0EC4 /* HandleMessage.h in Headers */, 7591 515BE1A91D55293400DD7C68 /* UIGamepadProvider.h in Headers */,7592 7597 1AC75A1B1B3368270056745B /* HangDetectionDisabler.h in Headers */, 7593 7598 37F90DE31376560E0051CF68 /* HTTPCookieAcceptPolicy.h in Headers */, … … 7775 7780 E18E690C169B563F009B6670 /* SecItemShimProxy.h in Headers */, 7776 7781 E18E6918169B667B009B6670 /* SecItemShimProxyMessages.h in Headers */, 7777 515BE1B51D5917FF00DD7C68 /* UIGamepad.h in Headers */,7778 7782 514D9F5719119D35000063A7 /* ServicesController.h in Headers */, 7779 7783 1AFDE65A1954A42B00C48FFA /* SessionState.h in Headers */, … … 7802 7806 1AF05D8714688348008B1E81 /* TiledCoreAnimationDrawingAreaProxy.h in Headers */, 7803 7807 1AFE436618B6C081009C7A48 /* UIDelegate.h in Headers */, 7808 515BE1B51D5917FF00DD7C68 /* UIGamepad.h in Headers */, 7809 515BE1A91D55293400DD7C68 /* UIGamepadProvider.h in Headers */, 7804 7810 CEE4AE2B1A5DCF430002F49B /* UIKitSPI.h in Headers */, 7805 7811 1A64245E12DE29A100CAAE2C /* UpdateInfo.h in Headers */, … … 7877 7883 BCB9F6A01123A84B00A137E0 /* WebFramePolicyListenerProxy.h in Headers */, 7878 7884 BC9B38A110F538BE00443A15 /* WebFrameProxy.h in Headers */, 7885 515BE1AB1D555AA000DD7C68 /* WebGamepad.h in Headers */, 7886 515BE1791D53FE8F00DD7C68 /* WebGamepadProvider.h in Headers */, 7879 7887 BC1BE1E012D54A410004A228 /* WebGeolocationClient.h in Headers */, 7880 7888 BC0E5FE512D697160012A72A /* WebGeolocationManager.h in Headers */, … … 7916 7924 909854ED12BC4E18000AD080 /* WebMemorySampler.h in Headers */, 7917 7925 BCF69F9A1176CED600471A52 /* WebNavigationDataStore.h in Headers */, 7918 515BE1AB1D555AA000DD7C68 /* WebGamepad.h in Headers */,7919 7926 7CCCC8FB1A5F50FD008FB0DA /* WebNavigationState.h in Headers */, 7920 7927 31A2EC49148997C200810D71 /* WebNotification.h in Headers */, … … 8099 8106 1AF4592F19464B2000F9D4A2 /* WKError.h in Headers */, 8100 8107 BCFD548C132D82680055D816 /* WKErrorCF.h in Headers */, 8101 515BE1791D53FE8F00DD7C68 /* WebGamepadProvider.h in Headers */,8102 8108 37B5045219EEF31300CE2CF8 /* WKErrorPrivate.h in Headers */, 8103 8109 BC4075FC124FF0270068F20A /* WKErrorRef.h in Headers */, … … 8109 8115 C54256B818BEC18C00DE4179 /* WKFormPopover.h in Headers */, 8110 8116 C54256BA18BEC18C00DE4179 /* WKFormSelectControl.h in Headers */, 8117 0F08CF521D63C13A00B48DF1 /* WKFormSelectPicker.h in Headers */, 8118 0F08CF541D63C14000B48DF1 /* WKFormSelectPopover.h in Headers */, 8111 8119 BCE4695A1214EDF4000B98EB /* WKFormSubmissionListener.h in Headers */, 8112 8120 37DFA7001810BB92001F4A9F /* WKFoundation.h in Headers */, … … 8570 8578 E17AE2C316B9C63A001C42F1 /* com.apple.WebKit.NetworkProcess.sb in Resources */, 8571 8579 E11D35AE16B63D1B006D23D7 /* com.apple.WebProcess.sb in Resources */, 8580 7A5E394A1D5BD8BE00B4B7CE /* com.macromedia.Flash Player ESR.plugin.sb in Resources */, 8572 8581 8DC2EF530486A6940098B216 /* InfoPlist.strings in Resources */, 8573 8582 93A2A3461D246125002B59D3 /* mediaIcon.pdf in Resources */, 8574 7A5E394A1D5BD8BE00B4B7CE /* com.macromedia.Flash Player ESR.plugin.sb in Resources */,8575 8583 ); 8576 8584 runOnlyForDeploymentPostprocessing = 0; … … 9046 9054 BCE81D8C1319F7EF00241910 /* FontInfo.cpp in Sources */, 9047 9055 1AE00D601831792100087DD7 /* FrameLoadState.cpp in Sources */, 9056 515BE1B21D5902DD00DD7C68 /* GamepadData.cpp in Sources */, 9048 9057 BC06F43012DBB9B6002D78DE /* GeolocationPermissionRequestManager.cpp in Sources */, 9049 9058 BC06F44B12DBD1F5002D78DE /* GeolocationPermissionRequestManagerProxy.cpp in Sources */, … … 9162 9171 1A2D82A8127F4EAB001EB962 /* NPRemoteObjectMap.cpp in Sources */, 9163 9172 1A2161B111F37664008AD0F5 /* NPRuntimeObjectMap.cpp in Sources */, 9164 1A08FEE41D593E2A008BA8CB /* WebPluginInfoProvider.cpp in Sources */,9165 9173 1A2162B011F38971008AD0F5 /* NPRuntimeUtilities.cpp in Sources */, 9166 9174 1A2D84A4127F6AD1001EB962 /* NPVariantData.cpp in Sources */, … … 9206 9214 1A0EC75F124BC7B2007EF4A5 /* PluginProcessProxy.cpp in Sources */, 9207 9215 1A2D90BB1281C931001EB962 /* PluginProcessProxyMac.mm in Sources */, 9208 515BE1B41D5917FF00DD7C68 /* UIGamepad.cpp in Sources */,9209 9216 1A043B5D124D5E9D00FFBFB5 /* PluginProcessProxyMessageReceiver.cpp in Sources */, 9210 9217 1A043DC2124FF87500FFBFB5 /* PluginProxy.cpp in Sources */, … … 9225 9232 2DDF731618E95060004F5A66 /* RemoteLayerBackingStoreCollection.mm in Sources */, 9226 9233 1AB16AE9164B3A8800290D62 /* RemoteLayerTreeContext.mm in Sources */, 9227 515BE1B21D5902DD00DD7C68 /* GamepadData.cpp in Sources */,9228 9234 2D29ECD1192F2C2E00984B78 /* RemoteLayerTreeDisplayRefreshMonitor.mm in Sources */, 9229 9235 1AB16ADD1648598400290D62 /* RemoteLayerTreeDrawingArea.mm in Sources */, … … 9255 9261 E1790890169BAA7F006904C7 /* SecItemShimMessageReceiver.cpp in Sources */, 9256 9262 E18E690B169B563F009B6670 /* SecItemShimProxy.cpp in Sources */, 9257 515BE1A71D55293400DD7C68 /* UIGamepadProviderHID.cpp in Sources */,9258 9263 E18E6917169B667B009B6670 /* SecItemShimProxyMessageReceiver.cpp in Sources */, 9259 9264 514D9F5819119D35000063A7 /* ServicesController.mm in Sources */, … … 9276 9281 1AB31A9616BC688100F6DBC9 /* StorageManagerMessageReceiver.cpp in Sources */, 9277 9282 1A44B95716B737AA00B7BBD8 /* StorageNamespaceImpl.cpp in Sources */, 9278 515BE1771D53FE8700DD7C68 /* WebGamepadProvider.cpp in Sources */,9279 9283 1AE00D6B18327C1200087DD7 /* StringReference.cpp in Sources */, 9280 9284 296BD85E15019BC30071F424 /* StringUtilities.mm in Sources */, … … 9285 9289 1AF05D8614688348008B1E81 /* TiledCoreAnimationDrawingAreaProxy.mm in Sources */, 9286 9290 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 */, 9287 9295 1A64245F12DE29A100CAAE2C /* UpdateInfo.cpp in Sources */, 9288 9296 1AC1336718565B5700F3EC05 /* UserData.cpp in Sources */, … … 9325 9333 7C4ABED41AA8FCB80088AA37 /* WebCompiledContentExtensionData.cpp in Sources */, 9326 9334 BC4A628F147312BE006C681A /* WebConnection.cpp in Sources */, 9327 515BE1A81D55293400DD7C68 /* UIGamepadProvider.cpp in Sources */,9328 9335 BC4A6291147312BE006C681A /* WebConnectionClient.cpp in Sources */, 9329 9336 1A1FEC1C1627B45700700F6D /* WebConnectionMessageReceiver.cpp in Sources */, … … 9378 9385 CD6F75F4131B66D000D6B21E /* WebFullScreenManagerProxy.cpp in Sources */, 9379 9386 CD73BA47131ACC9A00EEDED2 /* WebFullScreenManagerProxyMessageReceiver.cpp in Sources */, 9387 515BE1AA1D555A9B00DD7C68 /* WebGamepad.cpp in Sources */, 9388 515BE1771D53FE8700DD7C68 /* WebGamepadProvider.cpp in Sources */, 9380 9389 BC1BE1E112D54A410004A228 /* WebGeolocationClient.cpp in Sources */, 9381 9390 BC0E5FE612D697160012A72A /* WebGeolocationManager.cpp in Sources */, … … 9467 9476 CDA29A2A1CBEB67A00901CCF /* WebPlaybackSessionManagerProxyMessageReceiver.cpp in Sources */, 9468 9477 31D5929E166E060000E6BF02 /* WebPlugInClient.cpp in Sources */, 9478 1A08FEE41D593E2A008BA8CB /* WebPluginInfoProvider.cpp in Sources */, 9469 9479 BC5744EF12638FB3006F0F12 /* WebPopupItem.cpp in Sources */, 9470 9480 D3B9484611FF4B6500032B39 /* WebPopupMenu.cpp in Sources */, … … 9474 9484 7C85FD7F19341665000177C4 /* WebPreferencesKeys.cpp in Sources */, 9475 9485 BC84EB1812A7100C0083F2DA /* WebPreferencesMac.mm in Sources */, 9476 515BE1B71D5A94FD00DD7C68 /* UIGamepadProviderMac.mm in Sources */,9477 9486 BCD598AD112B7FDF00EC8C23 /* WebPreferencesStore.cpp in Sources */, 9478 9487 BC111AE4112F5C2600337BAB /* WebProcess.cpp in Sources */, … … 9522 9531 15739BBE1B42046600D258C1 /* WebUserMediaClient.cpp in Sources */, 9523 9532 52D5A1B71C574A0200DE34A3 /* WebVideoFullscreenManager.mm in Sources */, 9524 515BE1AA1D555A9B00DD7C68 /* WebGamepad.cpp in Sources */,9525 9533 3F418EF91887BD97002795FD /* WebVideoFullscreenManagerMessageReceiver.cpp in Sources */, 9526 9534 52D5A1B11C57496200DE34A3 /* WebVideoFullscreenManagerProxy.mm in Sources */,
Note:
See TracChangeset
for help on using the changeset viewer.