Changeset 147525 in webkit
- Timestamp:
- Apr 3, 2013, 1:21:49 AM (12 years ago)
- Location:
- trunk/Source
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r147502 r147525 1 2013-04-02 Ryosuke Niwa <rniwa@webkit.org> 2 3 Remove code for Mac 10.5 and earlier from WTF and WebKit2 4 https://bugs.webkit.org/show_bug.cgi?id=113844 5 6 Reviewed by Benjamin Poulain. 7 8 Removed the code for 10.5 and removed if-def for 10.6. 9 10 * wtf/FastMalloc.cpp: 11 (WTF::TCMalloc_ThreadCache::CreateCacheIfNecessary): 12 * wtf/Platform.h: 13 * wtf/ThreadingPthreads.cpp: 14 (WTF::initializeCurrentThreadInternal): 15 * wtf/unicode/icu/CollatorICU.cpp: 16 (WTF::Collator::userDefault): 17 1 18 2013-04-02 Max Vujovic <mvujovic@adobe.com> 2 19 -
trunk/Source/WTF/wtf/FastMalloc.cpp
r146372 r147525 4966 4966 malloc_introspection_t jscore_fastmalloc_introspection = { &FastMallocZone::enumerate, &FastMallocZone::goodSize, &FastMallocZone::check, &FastMallocZone::print, 4967 4967 &FastMallocZone::log, &FastMallocZone::forceLock, &FastMallocZone::forceUnlock, &FastMallocZone::statistics 4968 4969 #if OS(IOS) || __MAC_OS_X_VERSION_MAX_ALLOWED >= 10604970 4968 , 0 // zone_locked will not be called on the zone unless it advertises itself as version five or higher. 4971 #endif4972 4969 #if OS(IOS) || __MAC_OS_X_VERSION_MAX_ALLOWED >= 1070 4973 4970 , 0, 0, 0, 0 // These members will not be used unless the zone advertises itself as version seven or higher. -
trunk/Source/WTF/wtf/Platform.h
r147502 r147525 665 665 #if OS(DARWIN) 666 666 667 #define HAVE_DISPATCH_H 1 668 #define HAVE_MADV_FREE 1 667 669 #define HAVE_MERGESORT 1 670 #define HAVE_PTHREAD_SETNAME_NP 1 668 671 #define HAVE_SYS_TIMEB_H 1 669 672 #define WTF_USE_ACCELERATE 1 670 671 #if PLATFORM(IOS) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060672 673 #define HAVE_DISPATCH_H 1674 #define HAVE_MADV_FREE 1675 #define HAVE_PTHREAD_SETNAME_NP 1676 673 677 674 #if !PLATFORM(IOS) … … 679 676 #define HAVE_MADV_FREE_REUSE 1 680 677 #endif /* !PLATFORM(IOS) */ 681 682 #endif /* PLATFORM(IOS) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 */683 678 684 679 #endif /* OS(DARWIN) */ -
trunk/Source/WTF/wtf/ThreadingPthreads.cpp
r135206 r147525 57 57 #endif 58 58 59 #if OS(MAC_OS_X) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 106059 #if OS(MAC_OS_X) 60 60 #include <objc/objc-auto.h> 61 61 #endif … … 224 224 #endif 225 225 226 #if OS(MAC_OS_X) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060226 #if OS(MAC_OS_X) 227 227 // All threads that potentially use APIs above the BSD layer must be registered with the Objective-C 228 228 // garbage collector in case API implementations use garbage-collected memory. -
trunk/Source/WTF/wtf/unicode/icu/CollatorICU.cpp
r139974 r147525 63 63 #if OS(DARWIN) && USE(CF) 64 64 // Mac OS X doesn't set UNIX locale to match user-selected one, so ICU default doesn't work. 65 #if !OS(IOS) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 106065 #if !OS(IOS) 66 66 RetainPtr<CFLocaleRef> currentLocale(AdoptCF, CFLocaleCopyCurrent()); 67 67 CFStringRef collationOrder = (CFStringRef)CFLocaleGetValue(currentLocale.get(), kCFLocaleCollatorIdentifier); -
trunk/Source/WebKit2/ChangeLog
r147508 r147525 1 2013-04-02 Ryosuke Niwa <rniwa@webkit.org> 2 3 Remove code for Mac 10.5 and earlier from WTF and WebKit2 4 https://bugs.webkit.org/show_bug.cgi?id=113844 5 6 Reviewed by Benjamin Poulain. 7 8 Removed the code for 10.5 and removed if-def for 10.6. 9 10 * Shared/mac/PasteboardTypes.mm: 11 (WebKit::PasteboardTypes::forEditing): 12 1 13 2013-04-02 Anders Carlsson <andersca@apple.com> 2 14 -
trunk/Source/WebKit2/Shared/mac/PasteboardTypes.mm
r122400 r147525 45 45 { 46 46 static NSArray *types = retain([NSArray arrayWithObjects:WebArchivePboardType, NSHTMLPboardType, NSFilenamesPboardType, NSTIFFPboardType, NSPDFPboardType, 47 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 105048 NSPICTPboardType,49 #endif50 47 NSURLPboardType, NSRTFDPboardType, NSRTFPboardType, NSStringPboardType, NSColorPboardType, kUTTypePNG, nil]); 51 48 return types;
Note:
See TracChangeset
for help on using the changeset viewer.