Changeset 167609 in webkit


Ignore:
Timestamp:
Apr 21, 2014 12:48:12 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Remove unused WebKitSystemInterface functions
https://bugs.webkit.org/show_bug.cgi?id=131938

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2014-04-21
Reviewed by Alexey Proskuryakov.

Source/WebCore:

  • WebCore.exp.in:
  • platform/ios/WebCoreSystemInterfaceIOS.mm:
  • platform/mac/WebCoreSystemInterface.h:
  • platform/mac/WebCoreSystemInterface.mm:

Source/WebKit/mac:

  • WebCoreSupport/WebSystemInterface.mm:

(InitWebCoreSystemInterface):

Source/WebKit2:

  • WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:

(InitWebCoreSystemInterface):

Location:
trunk/Source
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r167605 r167609  
     12014-04-21  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Remove unused WebKitSystemInterface functions
     4        https://bugs.webkit.org/show_bug.cgi?id=131938
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * WebCore.exp.in:
     9        * platform/ios/WebCoreSystemInterfaceIOS.mm:
     10        * platform/mac/WebCoreSystemInterface.h:
     11        * platform/mac/WebCoreSystemInterface.mm:
     12
    1132014-04-21  Andreas Kling  <akling@apple.com>
    214
  • trunk/Source/WebCore/WebCore.exp.in

    r167594 r167609  
    28582858__ZNK7WebCore15ResourceRequest12cfURLRequestENS_20HTTPBodyUpdatePolicyE
    28592859__ZNK7WebCore16ResourceResponse13cfURLResponseEv
    2860 _wkCFURLRequestCopyHTTPRequestBodyParts
    2861 _wkCFURLRequestSetHTTPRequestBodyParts
    28622860_wkCopyCredentialFromCFPersistentStorage
    28632861_wkGetDefaultHTTPCookieStorage
  • trunk/Source/WebCore/platform/ios/WebCoreSystemInterfaceIOS.mm

    r167481 r167609  
    8282WKCFURLCredentialRef (*wkCopyCredentialFromCFPersistentStorage)(CFURLProtectionSpaceRef protectionSpace);
    8383void (*wkSetCFURLRequestShouldContentSniff)(CFMutableURLRequestRef, bool);
    84 CFArrayRef (*wkCFURLRequestCopyHTTPRequestBodyParts)(CFURLRequestRef);
    85 void (*wkCFURLRequestSetHTTPRequestBodyParts)(CFMutableURLRequestRef, CFArrayRef bodyParts);
    8684void (*wkSetRequestStorageSession)(CFURLStorageSessionRef, CFMutableURLRequestRef);
    8785#endif
  • trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h

    r167481 r167609  
    333333extern WKCFURLCredentialRef (*wkCopyCredentialFromCFPersistentStorage)(CFURLProtectionSpaceRef protectionSpace);
    334334extern void (*wkSetCFURLRequestShouldContentSniff)(CFMutableURLRequestRef, bool);
    335 extern CFArrayRef (*wkCFURLRequestCopyHTTPRequestBodyParts)(CFURLRequestRef);
    336 extern void (*wkCFURLRequestSetHTTPRequestBodyParts)(CFMutableURLRequestRef, CFArrayRef bodyParts);
    337335extern void (*wkSetRequestStorageSession)(CFURLStorageSessionRef, CFMutableURLRequestRef);
    338336#endif
  • trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.mm

    r165917 r167609  
    119119WKCFURLCredentialRef (*wkCopyCredentialFromCFPersistentStorage)(CFURLProtectionSpaceRef protectionSpace);
    120120void (*wkSetCFURLRequestShouldContentSniff)(CFMutableURLRequestRef, bool);
    121 CFArrayRef (*wkCFURLRequestCopyHTTPRequestBodyParts)(CFURLRequestRef);
    122 void (*wkCFURLRequestSetHTTPRequestBodyParts)(CFMutableURLRequestRef, CFArrayRef bodyParts);
    123121void (*wkSetRequestStorageSession)(CFURLStorageSessionRef, CFMutableURLRequestRef);
    124122#endif
  • trunk/Source/WebKit/mac/ChangeLog

    r167594 r167609  
     12014-04-21  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Remove unused WebKitSystemInterface functions
     4        https://bugs.webkit.org/show_bug.cgi?id=131938
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * WebCoreSupport/WebSystemInterface.mm:
     9        (InitWebCoreSystemInterface):
     10
    1112014-04-21  Zan Dobersek  <zdobersek@igalia.com>
    212
  • trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm

    r167481 r167609  
    169169    INIT(CopyCredentialFromCFPersistentStorage);
    170170    INIT(SetCFURLRequestShouldContentSniff);
    171     INIT(CFURLRequestCopyHTTPRequestBodyParts);
    172     INIT(CFURLRequestSetHTTPRequestBodyParts);
    173171    INIT(SetRequestStorageSession);
    174172#endif
  • trunk/Source/WebKit2/ChangeLog

    r167603 r167609  
     12014-04-21  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Remove unused WebKitSystemInterface functions
     4        https://bugs.webkit.org/show_bug.cgi?id=131938
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:
     9        (InitWebCoreSystemInterface):
     10
    1112014-04-21  Anders Carlsson  <andersca@apple.com>
    212
  • trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm

    r167481 r167609  
    161161        INIT(CopyCredentialFromCFPersistentStorage);
    162162        INIT(SetCFURLRequestShouldContentSniff);
    163         INIT(CFURLRequestCopyHTTPRequestBodyParts);
    164         INIT(CFURLRequestSetHTTPRequestBodyParts);
    165163        INIT(SetRequestStorageSession);
    166164#endif
Note: See TracChangeset for help on using the changeset viewer.