⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 211098 in webkit


Ignore:
Timestamp:
Jan 24, 2017, 1:22:23 PM (10 years ago)
Author:
matthew_hanson@apple.com
Message:

Merge r210603. rdar://problem/29839194

Location:
branches/safari-603-branch/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-603-branch/Source/WTF/ChangeLog

    r210720 r211098  
     12017-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
    1162017-01-12  Matthew Hanson  <matthew_hanson@apple.com>
    217
  • branches/safari-603-branch/Source/WTF/wtf/spi/cf/CFBundleSPI.h

    r205488 r211098  
    3939void _CFBundleSetupXPCBootstrap(xpc_object_t bootstrap);
    4040
     41CFBundleRef _CFBundleCreateUnique(CFAllocatorRef, CFURLRef bundleURL);
    4142Boolean CFBundleGetLocalizationInfoForLocalization(CFStringRef localizationName, SInt32 *languageCode, SInt32 *regionCode, SInt32 *scriptCode, CFStringEncoding *stringEncoding);
    4243CFStringRef CFBundleCopyLocalizationForLocalizationInfo(SInt32 languageCode, SInt32 regionCode, SInt32 scriptCode, CFStringEncoding stringEncoding);
  • branches/safari-603-branch/Source/WebKit2/ChangeLog

    r210969 r211098  
     12017-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
    1182017-01-20  Matthew Hanson  <matthew_hanson@apple.com>
    219
  • branches/safari-603-branch/Source/WebKit2/Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm

    r196505 r211098  
    3333#import <wtf/HashSet.h>
    3434#import <wtf/MainThread.h>
     35#import <wtf/spi/cf/CFBundleSPI.h>
    3536
    3637using namespace WebCore;
     
    209210   
    210211    // Try to initialize the bundle.
    211     RetainPtr<CFBundleRef> bundle = adoptCF(CFBundleCreate(kCFAllocatorDefault, bundleURL.get()));
     212    RetainPtr<CFBundleRef> bundle = adoptCF(_CFBundleCreateUnique(kCFAllocatorDefault, bundleURL.get()));
    212213    if (!bundle)
    213214        return false;
Note: See TracChangeset for help on using the changeset viewer.