Changeset 196765 in webkit


Ignore:
Timestamp:
Feb 18, 2016 10:44:51 AM (8 years ago)
Author:
andersca@apple.com
Message:

Remove two unused functions
https://bugs.webkit.org/show_bug.cgi?id=154397

Reviewed by Tim Horton.

  • UIProcess/API/C/WKContext.cpp:

(WKContextGetPluginSiteDataManager): Deleted.
(WKContextGetResourceCacheManager): Deleted.

  • UIProcess/API/C/WKContext.h:
Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r196755 r196765  
     12016-02-18  Anders Carlsson  <andersca@apple.com>
     2
     3        Remove two unused functions
     4        https://bugs.webkit.org/show_bug.cgi?id=154397
     5
     6        Reviewed by Tim Horton.
     7
     8        * UIProcess/API/C/WKContext.cpp:
     9        (WKContextGetPluginSiteDataManager): Deleted.
     10        (WKContextGetResourceCacheManager): Deleted.
     11        * UIProcess/API/C/WKContext.h:
     12
    1132016-02-18  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Source/WebKit2/UIProcess/API/C/WKContext.cpp

    r196698 r196765  
    448448}
    449449
    450 WKPluginSiteDataManagerRef 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 
    460 WKResourceCacheManagerRef WKContextGetResourceCacheManager(WKContextRef context)
    461 {
    462     return reinterpret_cast<WKResourceCacheManagerRef>(WKContextGetWebsiteDataStore(context));
    463 }
    464 
    465450void WKContextStartMemorySampler(WKContextRef contextRef, WKDoubleRef interval)
    466451{
  • trunk/Source/WebKit2/UIProcess/API/C/WKContext.h

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