Changeset 211098 in webkit
- Timestamp:
- Jan 24, 2017, 1:22:23 PM (10 years ago)
- Location:
- branches/safari-603-branch/Source
- Files:
-
- 4 edited
-
WTF/ChangeLog (modified) (1 diff)
-
WTF/wtf/spi/cf/CFBundleSPI.h (modified) (1 diff)
-
WebKit2/ChangeLog (modified) (1 diff)
-
WebKit2/Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-603-branch/Source/WTF/ChangeLog
r210720 r211098 1 2017-01-24 Matthew Hanson <matthew_hanson@apple.com> 2 3 Merge r210603. rdar://problem/29839194 4 5 2017-01-11 Anders Carlsson <andersca@apple.com> 6 7 navigator.plugins.refresh and WKContextRefreshPlugIns doesn't pick up changes to already-present plug-ins 8 https://bugs.webkit.org/show_bug.cgi?id=166942 9 rdar://problem/29839194 10 11 Reviewed by Sam Weinig. 12 13 * wtf/spi/cf/CFBundleSPI.h: 14 Add SPI declaration. 15 1 16 2017-01-12 Matthew Hanson <matthew_hanson@apple.com> 2 17 -
branches/safari-603-branch/Source/WTF/wtf/spi/cf/CFBundleSPI.h
r205488 r211098 39 39 void _CFBundleSetupXPCBootstrap(xpc_object_t bootstrap); 40 40 41 CFBundleRef _CFBundleCreateUnique(CFAllocatorRef, CFURLRef bundleURL); 41 42 Boolean CFBundleGetLocalizationInfoForLocalization(CFStringRef localizationName, SInt32 *languageCode, SInt32 *regionCode, SInt32 *scriptCode, CFStringEncoding *stringEncoding); 42 43 CFStringRef CFBundleCopyLocalizationForLocalizationInfo(SInt32 languageCode, SInt32 regionCode, SInt32 scriptCode, CFStringEncoding stringEncoding); -
branches/safari-603-branch/Source/WebKit2/ChangeLog
r210969 r211098 1 2017-01-24 Matthew Hanson <matthew_hanson@apple.com> 2 3 Merge r210603. rdar://problem/29839194 4 5 2017-01-11 Anders Carlsson <andersca@apple.com> 6 7 navigator.plugins.refresh and WKContextRefreshPlugIns doesn't pick up changes to already-present plug-ins 8 https://bugs.webkit.org/show_bug.cgi?id=166942 9 rdar://problem/29839194 10 11 Reviewed by Sam Weinig. 12 13 Use _CFBundleCreateUnique so the resulting bundle won't be cached. 14 15 * Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm: 16 (WebKit::NetscapePluginModule::getPluginInfo): 17 1 18 2017-01-20 Matthew Hanson <matthew_hanson@apple.com> 2 19 -
branches/safari-603-branch/Source/WebKit2/Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm
r196505 r211098 33 33 #import <wtf/HashSet.h> 34 34 #import <wtf/MainThread.h> 35 #import <wtf/spi/cf/CFBundleSPI.h> 35 36 36 37 using namespace WebCore; … … 209 210 210 211 // Try to initialize the bundle. 211 RetainPtr<CFBundleRef> bundle = adoptCF( CFBundleCreate(kCFAllocatorDefault, bundleURL.get()));212 RetainPtr<CFBundleRef> bundle = adoptCF(_CFBundleCreateUnique(kCFAllocatorDefault, bundleURL.get())); 212 213 if (!bundle) 213 214 return false;
Note:
See TracChangeset
for help on using the changeset viewer.