Diff
Modified: trunk/Source/WebCore/ChangeLog (167608 => 167609)
--- trunk/Source/WebCore/ChangeLog 2014-04-21 19:41:34 UTC (rev 167608)
+++ trunk/Source/WebCore/ChangeLog 2014-04-21 19:48:12 UTC (rev 167609)
@@ -1,3 +1,15 @@
+2014-04-21 Joseph Pecoraro <[email protected]>
+
+ Remove unused WebKitSystemInterface functions
+ https://bugs.webkit.org/show_bug.cgi?id=131938
+
+ Reviewed by Alexey Proskuryakov.
+
+ * WebCore.exp.in:
+ * platform/ios/WebCoreSystemInterfaceIOS.mm:
+ * platform/mac/WebCoreSystemInterface.h:
+ * platform/mac/WebCoreSystemInterface.mm:
+
2014-04-21 Andreas Kling <[email protected]>
Move the JSString cache from DOMWrapperWorld to VM.
Modified: trunk/Source/WebCore/WebCore.exp.in (167608 => 167609)
--- trunk/Source/WebCore/WebCore.exp.in 2014-04-21 19:41:34 UTC (rev 167608)
+++ trunk/Source/WebCore/WebCore.exp.in 2014-04-21 19:48:12 UTC (rev 167609)
@@ -2857,8 +2857,6 @@
__ZNK7WebCore13ResourceErrorcvP9__CFErrorEv
__ZNK7WebCore15ResourceRequest12cfURLRequestENS_20HTTPBodyUpdatePolicyE
__ZNK7WebCore16ResourceResponse13cfURLResponseEv
-_wkCFURLRequestCopyHTTPRequestBodyParts
-_wkCFURLRequestSetHTTPRequestBodyParts
_wkCopyCredentialFromCFPersistentStorage
_wkGetDefaultHTTPCookieStorage
_wkSetCFURLRequestShouldContentSniff
Modified: trunk/Source/WebCore/platform/ios/WebCoreSystemInterfaceIOS.mm (167608 => 167609)
--- trunk/Source/WebCore/platform/ios/WebCoreSystemInterfaceIOS.mm 2014-04-21 19:41:34 UTC (rev 167608)
+++ trunk/Source/WebCore/platform/ios/WebCoreSystemInterfaceIOS.mm 2014-04-21 19:48:12 UTC (rev 167609)
@@ -81,8 +81,6 @@
CFHTTPCookieStorageRef (*wkGetDefaultHTTPCookieStorage)();
WKCFURLCredentialRef (*wkCopyCredentialFromCFPersistentStorage)(CFURLProtectionSpaceRef protectionSpace);
void (*wkSetCFURLRequestShouldContentSniff)(CFMutableURLRequestRef, bool);
-CFArrayRef (*wkCFURLRequestCopyHTTPRequestBodyParts)(CFURLRequestRef);
-void (*wkCFURLRequestSetHTTPRequestBodyParts)(CFMutableURLRequestRef, CFArrayRef bodyParts);
void (*wkSetRequestStorageSession)(CFURLStorageSessionRef, CFMutableURLRequestRef);
#endif
Modified: trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h (167608 => 167609)
--- trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h 2014-04-21 19:41:34 UTC (rev 167608)
+++ trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h 2014-04-21 19:48:12 UTC (rev 167609)
@@ -332,8 +332,6 @@
extern CFHTTPCookieStorageRef (*wkGetDefaultHTTPCookieStorage)();
extern WKCFURLCredentialRef (*wkCopyCredentialFromCFPersistentStorage)(CFURLProtectionSpaceRef protectionSpace);
extern void (*wkSetCFURLRequestShouldContentSniff)(CFMutableURLRequestRef, bool);
-extern CFArrayRef (*wkCFURLRequestCopyHTTPRequestBodyParts)(CFURLRequestRef);
-extern void (*wkCFURLRequestSetHTTPRequestBodyParts)(CFMutableURLRequestRef, CFArrayRef bodyParts);
extern void (*wkSetRequestStorageSession)(CFURLStorageSessionRef, CFMutableURLRequestRef);
#endif
#if !PLATFORM(IOS)
Modified: trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.mm (167608 => 167609)
--- trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.mm 2014-04-21 19:41:34 UTC (rev 167608)
+++ trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.mm 2014-04-21 19:48:12 UTC (rev 167609)
@@ -118,8 +118,6 @@
CFHTTPCookieStorageRef (*wkGetDefaultHTTPCookieStorage)();
WKCFURLCredentialRef (*wkCopyCredentialFromCFPersistentStorage)(CFURLProtectionSpaceRef protectionSpace);
void (*wkSetCFURLRequestShouldContentSniff)(CFMutableURLRequestRef, bool);
-CFArrayRef (*wkCFURLRequestCopyHTTPRequestBodyParts)(CFURLRequestRef);
-void (*wkCFURLRequestSetHTTPRequestBodyParts)(CFMutableURLRequestRef, CFArrayRef bodyParts);
void (*wkSetRequestStorageSession)(CFURLStorageSessionRef, CFMutableURLRequestRef);
#endif
Modified: trunk/Source/WebKit/mac/ChangeLog (167608 => 167609)
--- trunk/Source/WebKit/mac/ChangeLog 2014-04-21 19:41:34 UTC (rev 167608)
+++ trunk/Source/WebKit/mac/ChangeLog 2014-04-21 19:48:12 UTC (rev 167609)
@@ -1,3 +1,13 @@
+2014-04-21 Joseph Pecoraro <[email protected]>
+
+ Remove unused WebKitSystemInterface functions
+ https://bugs.webkit.org/show_bug.cgi?id=131938
+
+ Reviewed by Alexey Proskuryakov.
+
+ * WebCoreSupport/WebSystemInterface.mm:
+ (InitWebCoreSystemInterface):
+
2014-04-21 Zan Dobersek <[email protected]>
Move cross-port Source/WebCore/page/ code to std::unique_ptr
Modified: trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm (167608 => 167609)
--- trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm 2014-04-21 19:41:34 UTC (rev 167608)
+++ trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm 2014-04-21 19:48:12 UTC (rev 167609)
@@ -168,8 +168,6 @@
INIT(GetDefaultHTTPCookieStorage);
INIT(CopyCredentialFromCFPersistentStorage);
INIT(SetCFURLRequestShouldContentSniff);
- INIT(CFURLRequestCopyHTTPRequestBodyParts);
- INIT(CFURLRequestSetHTTPRequestBodyParts);
INIT(SetRequestStorageSession);
#endif
Modified: trunk/Source/WebKit2/ChangeLog (167608 => 167609)
--- trunk/Source/WebKit2/ChangeLog 2014-04-21 19:41:34 UTC (rev 167608)
+++ trunk/Source/WebKit2/ChangeLog 2014-04-21 19:48:12 UTC (rev 167609)
@@ -1,3 +1,13 @@
+2014-04-21 Joseph Pecoraro <[email protected]>
+
+ Remove unused WebKitSystemInterface functions
+ https://bugs.webkit.org/show_bug.cgi?id=131938
+
+ Reviewed by Alexey Proskuryakov.
+
+ * WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:
+ (InitWebCoreSystemInterface):
+
2014-04-21 Anders Carlsson <[email protected]>
Check the com.apple.security.network.client entitlement for all processes
Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm (167608 => 167609)
--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm 2014-04-21 19:41:34 UTC (rev 167608)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm 2014-04-21 19:48:12 UTC (rev 167609)
@@ -160,8 +160,6 @@
INIT(GetDefaultHTTPCookieStorage);
INIT(CopyCredentialFromCFPersistentStorage);
INIT(SetCFURLRequestShouldContentSniff);
- INIT(CFURLRequestCopyHTTPRequestBodyParts);
- INIT(CFURLRequestSetHTTPRequestBodyParts);
INIT(SetRequestStorageSession);
#endif