Changeset 196766 in webkit


Ignore:
Timestamp:
Feb 18, 2016 11:02:26 AM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r196765.
https://bugs.webkit.org/show_bug.cgi?id=154402

Broke Safari (Requested by andersca on #webkit).

Reverted changeset:

"Remove two unused functions"
https://bugs.webkit.org/show_bug.cgi?id=154397
http://trac.webkit.org/changeset/196765

Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r196765 r196766  
     12016-02-18  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r196765.
     4        https://bugs.webkit.org/show_bug.cgi?id=154402
     5
     6        Broke Safari (Requested by andersca on #webkit).
     7
     8        Reverted changeset:
     9
     10        "Remove two unused functions"
     11        https://bugs.webkit.org/show_bug.cgi?id=154397
     12        http://trac.webkit.org/changeset/196765
     13
    1142016-02-18  Anders Carlsson  <andersca@apple.com>
    215
  • trunk/Source/WebKit2/UIProcess/API/C/WKContext.cpp

    r196765 r196766  
    448448}
    449449
     450WKPluginSiteDataManagerRef WKContextGetPluginSiteDataManager(WKContextRef context)
     451{
     452#if ENABLE(NETSCAPE_PLUGIN_API)
     453    return reinterpret_cast<WKPluginSiteDataManagerRef>(WKContextGetWebsiteDataStore(context));
     454#else
     455    UNUSED_PARAM(context);
     456    return nullptr;
     457#endif
     458}
     459
     460WKResourceCacheManagerRef WKContextGetResourceCacheManager(WKContextRef context)
     461{
     462    return reinterpret_cast<WKResourceCacheManagerRef>(WKContextGetWebsiteDataStore(context));
     463}
     464
    450465void WKContextStartMemorySampler(WKContextRef contextRef, WKDoubleRef interval)
    451466{
  • trunk/Source/WebKit2/UIProcess/API/C/WKContext.h

    r196765 r196766  
    133133WK_EXPORT WKMediaSessionFocusManagerRef WKContextGetMediaSessionFocusManager(WKContextRef context);
    134134WK_EXPORT WKNotificationManagerRef WKContextGetNotificationManager(WKContextRef context);
     135WK_EXPORT WKPluginSiteDataManagerRef WKContextGetPluginSiteDataManager(WKContextRef context);
     136WK_EXPORT WKResourceCacheManagerRef WKContextGetResourceCacheManager(WKContextRef context);
    135137
    136138typedef void (*WKContextGetStatisticsFunction)(WKDictionaryRef statistics, WKErrorRef error, void* functionContext);
Note: See TracChangeset for help on using the changeset viewer.