Remove code for 10.5 from WTF and WebKit2
Created attachment 196279 [details] Cleanup
Comment on attachment 196279 [details] Cleanup View in context: https://bugs.webkit.org/attachment.cgi?id=196279&action=review > Source/WTF/wtf/Platform.h:673 > #define HAVE_SYS_TIMEB_H 1 > #define WTF_USE_ACCELERATE 1 > > -#if PLATFORM(IOS) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 > - > #define HAVE_DISPATCH_H 1 > #define HAVE_MADV_FREE 1 > #define HAVE_PTHREAD_SETNAME_NP 1 Better re-order the #defines alphabetically with the ones above. > Source/WebKit2/Shared/mac/PasteboardTypes.mm:48 > static NSArray *types = retain([NSArray arrayWithObjects:WebArchivePboardType, NSHTMLPboardType, NSFilenamesPboardType, NSTIFFPboardType, NSPDFPboardType, > -#if __MAC_OS_X_VERSION_MIN_REQUIRED == 1050 > - NSPICTPboardType, > -#endif > NSURLPboardType, NSRTFDPboardType, NSRTFPboardType, NSStringPboardType, NSColorPboardType, kUTTypePNG, nil]); > return types; While you are at it, maybe clean the array allocation? static NSArray *types = [[NSArray alloc] initWithArray: WebArchivePboardType, NSHTMLPboardType, NSFilenamesPboardType, NSTIFFPboardType, NSPDFPboardType, etc
Comment on attachment 196279 [details] Cleanup View in context: https://bugs.webkit.org/attachment.cgi?id=196279&action=review Thanks for the review. >> Source/WebKit2/Shared/mac/PasteboardTypes.mm:48 >> return types; > > While you are at it, maybe clean the array allocation? > > static NSArray *types = [[NSArray alloc] initWithArray: WebArchivePboardType, NSHTMLPboardType, NSFilenamesPboardType, NSTIFFPboardType, NSPDFPboardType, etc There are 4 other functions that use the same style so I'll leave it to you.
Committed r147525: <http://trac.webkit.org/changeset/147525>