Changeset 215280 in webkit
- Timestamp:
- Apr 12, 2017, 12:40:58 PM (8 years ago)
- Location:
- trunk/Source
- Files:
-
- 1 deleted
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r215277 r215280 1 2017-04-12 Alex Christensen <achristensen@webkit.org> 2 3 Stop using didReceiveDataArray callback on El Capitan 4 https://bugs.webkit.org/show_bug.cgi?id=170780 5 6 Reviewed by Brady Eidson. 7 8 didReceiveDataArray was an optimization that improved performance on iOS but is not needed any more. 9 The only platform where this is used is El Capitan, and didReceiveData works fine on that platform. 10 I've left some cleanup still to be done in SharedBuffer, and doing that is the motivation for this change. 11 12 * WebCore.xcodeproj/project.pbxproj: 13 * loader/ResourceLoader.h: 14 * loader/SubresourceLoader.h: 15 * loader/cf/SubresourceLoaderCF.cpp: Removed. 16 * loader/mac/ResourceLoaderMac.mm: 17 (WebCore::ResourceLoader::didReceiveDataArray): Deleted. 18 * platform/network/ResourceHandleClient.h: 19 (WebCore::ResourceHandleClient::supportsDataArray): Deleted. 20 (WebCore::ResourceHandleClient::didReceiveDataArray): Deleted. 21 * platform/network/cf/ResourceHandleCFURLConnectionDelegate.cpp: 22 (WebCore::ResourceHandleCFURLConnectionDelegate::makeConnectionClient): 23 (WebCore::ResourceHandleCFURLConnectionDelegate::didReceiveDataArrayCallback): Deleted. 24 * platform/network/cf/ResourceHandleCFURLConnectionDelegate.h: 25 * platform/network/cf/ResourceHandleCFURLConnectionDelegateWithOperationQueue.cpp: 26 (WebCore::ResourceHandleCFURLConnectionDelegateWithOperationQueue::didReceiveDataArray): Deleted. 27 * platform/network/cf/ResourceHandleCFURLConnectionDelegateWithOperationQueue.h: 28 * platform/network/cf/SynchronousResourceHandleCFURLConnectionDelegate.cpp: 29 (WebCore::SynchronousResourceHandleCFURLConnectionDelegate::didReceiveDataArray): Deleted. 30 * platform/network/cf/SynchronousResourceHandleCFURLConnectionDelegate.h: 31 * platform/network/mac/WebCoreResourceHandleAsDelegate.mm: 32 (-[WebCoreResourceHandleAsDelegate connection:didReceiveDataArray:]): Deleted. 33 * platform/network/mac/WebCoreResourceHandleAsOperationQueueDelegate.mm: 34 (-[WebCoreResourceHandleAsOperationQueueDelegate connection:didReceiveDataArray:]): Deleted. 35 1 36 2017-04-12 Beth Dakin <bdakin@apple.com> 2 37 -
trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj
r215254 r215280 3226 3226 7D4C96DD1AD4483500365A50 /* JSFetchHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D4C96D91AD4483500365A50 /* JSFetchHeaders.h */; }; 3227 3227 7D741BDA177226AA00859170 /* CSSValueKeywords.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 6565814809D13043000E61D7 /* CSSValueKeywords.h */; }; 3228 7E37EF2E1339208800B29250 /* SubresourceLoaderCF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E37EF2D1339208800B29250 /* SubresourceLoaderCF.cpp */; };3229 3228 7E428CE513E3407F003B661C /* ResourceHandleIOS.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7E428CE413E3407F003B661C /* ResourceHandleIOS.mm */; }; 3230 3229 7E46F6FA1627A2CA00062223 /* JSOESElementIndexUint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E46F6F81627A2C900062223 /* JSOESElementIndexUint.cpp */; }; … … 11228 11227 7D4C96D81AD4483500365A50 /* JSFetchHeaders.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSFetchHeaders.cpp; sourceTree = "<group>"; }; 11229 11228 7D4C96D91AD4483500365A50 /* JSFetchHeaders.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSFetchHeaders.h; sourceTree = "<group>"; }; 11230 7E37EF2D1339208800B29250 /* SubresourceLoaderCF.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SubresourceLoaderCF.cpp; sourceTree = "<group>"; };11231 11229 7E428CE413E3407F003B661C /* ResourceHandleIOS.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ResourceHandleIOS.mm; sourceTree = "<group>"; }; 11232 11230 7E46F6F81627A2C900062223 /* JSOESElementIndexUint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSOESElementIndexUint.cpp; sourceTree = "<group>"; }; … … 19652 19650 children = ( 19653 19651 7EE6847412D26E7000E79415 /* ResourceLoaderCFNet.cpp */, 19654 7E37EF2D1339208800B29250 /* SubresourceLoaderCF.cpp */,19655 19652 ); 19656 19653 path = cf; … … 33097 33094 F55B3DD31251F12D003EF269 /* SubmitInputType.cpp in Sources */, 33098 33095 93E227E40AF589AD00D48324 /* SubresourceLoader.cpp in Sources */, 33099 7E37EF2E1339208800B29250 /* SubresourceLoaderCF.cpp in Sources */,33100 33096 7E8FADC4199A95B100714968 /* SubresourceLoaderCocoa.mm in Sources */, 33101 33097 5778BD841DA4817B009E3009 /* SubtleCrypto.cpp in Sources */, -
trunk/Source/WebCore/loader/ResourceLoader.h
r214266 r215280 106 106 virtual void didFinishLoading(const NetworkLoadMetrics&); 107 107 virtual void didFail(const ResourceError&); 108 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)109 virtual void didReceiveDataArray(CFArrayRef dataArray);110 #endif111 108 virtual void didRetrieveDerivedDataFromCache(const String& type, SharedBuffer&); 112 109 … … 197 194 void wasBlocked(ResourceHandle*) override; 198 195 void cannotShowURL(ResourceHandle*) override; 199 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)200 void didReceiveDataArray(ResourceHandle*, CFArrayRef dataArray) override;201 #endif202 196 bool shouldUseCredentialStorage(ResourceHandle*) override { return shouldUseCredentialStorage(); } 203 197 void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge& challenge) override { didReceiveAuthenticationChallenge(challenge); } -
trunk/Source/WebCore/loader/SubresourceLoader.h
r214266 r215280 84 84 #endif 85 85 86 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)87 bool supportsDataArray() override { return true; }88 void didReceiveDataArray(CFArrayRef) override;89 #endif90 86 void releaseResources() override; 91 87 -
trunk/Source/WebCore/loader/mac/ResourceLoaderMac.mm
r207585 r215280 59 59 #endif 60 60 61 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)62 63 void ResourceLoader::didReceiveDataArray(CFArrayRef dataArray)64 {65 // Protect this in this delegate method since the additional processing can do66 // anything including possibly derefing this; one example of this is Radar 3266216.67 Ref<ResourceLoader> protectedThis(*this);68 69 CFIndex arrayCount = CFArrayGetCount(dataArray);70 for (CFIndex i = 0; i < arrayCount; ++i) {71 CFDataRef data = static_cast<CFDataRef>(CFArrayGetValueAtIndex(dataArray, i));72 unsigned dataLen = static_cast<unsigned>(CFDataGetLength(data));73 74 if (m_options.dataBufferingPolicy == BufferData) {75 if (!m_resourceData)76 m_resourceData = SharedBuffer::create();77 m_resourceData->append(data);78 }79 80 // FIXME: If we get a resource with more than 2B bytes, this code won't do the right thing.81 // However, with today's computers and networking speeds, this won't happen in practice.82 // Could be an issue with a giant local file.83 if (m_options.sendLoadCallbacks == SendCallbacks && m_frame)84 frameLoader()->notifier().didReceiveData(this, reinterpret_cast<const char*>(CFDataGetBytePtr(data)), dataLen, dataLen);85 }86 61 } 87 88 void ResourceLoader::didReceiveDataArray(ResourceHandle*, CFArrayRef dataArray)89 {90 CFIndex arrayCount = CFArrayGetCount(dataArray);91 CFIndex dataLength = 0;92 for (CFIndex i = 0; i < arrayCount; ++i) {93 CFDataRef data = static_cast<CFDataRef>(CFArrayGetValueAtIndex(dataArray, i));94 dataLength += CFDataGetLength(data);95 }96 97 didReceiveDataArray(dataArray);98 }99 100 #endif101 102 } -
trunk/Source/WebCore/platform/network/ResourceHandleClient.h
r212993 r215280 43 43 44 44 namespace WebCore { 45 46 47 48 49 50 51 52 53 45 class AuthenticationChallenge; 46 class Credential; 47 class URL; 48 class ProtectionSpace; 49 class ResourceHandle; 50 class ResourceError; 51 class ResourceRequest; 52 class ResourceResponse; 53 class SharedBuffer; 54 54 55 enum CacheStoragePolicy { 56 StorageAllowed, 57 StorageAllowedInMemoryOnly, 58 StorageNotAllowed 59 }; 55 enum CacheStoragePolicy { 56 StorageAllowed, 57 StorageAllowedInMemoryOnly, 58 StorageNotAllowed 59 }; 60 61 class ResourceHandleClient { 62 public: 63 WEBCORE_EXPORT ResourceHandleClient(); 64 WEBCORE_EXPORT virtual ~ResourceHandleClient(); 65 66 WEBCORE_EXPORT virtual ResourceRequest willSendRequest(ResourceHandle*, ResourceRequest&&, ResourceResponse&&); 67 virtual void didSendData(ResourceHandle*, unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/) { } 68 69 virtual void didReceiveResponse(ResourceHandle*, ResourceResponse&&) { } 60 70 61 class ResourceHandleClient { 62 public: 63 WEBCORE_EXPORT ResourceHandleClient(); 64 WEBCORE_EXPORT virtual ~ResourceHandleClient(); 71 virtual void didReceiveData(ResourceHandle*, const char*, unsigned, int /*encodedDataLength*/) { } 72 WEBCORE_EXPORT virtual void didReceiveBuffer(ResourceHandle*, Ref<SharedBuffer>&&, int encodedDataLength); 73 74 virtual void didFinishLoading(ResourceHandle*) { } 75 virtual void didFail(ResourceHandle*, const ResourceError&) { } 76 virtual void wasBlocked(ResourceHandle*) { } 77 virtual void cannotShowURL(ResourceHandle*) { } 65 78 66 WEBCORE_EXPORT virtual ResourceRequest willSendRequest(ResourceHandle*, ResourceRequest&&, ResourceResponse&&); 67 virtual void didSendData(ResourceHandle*, unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/) { } 79 virtual bool usesAsyncCallbacks() { return false; } 68 80 69 virtual void didReceiveResponse(ResourceHandle*, ResourceResponse&&) { } 70 71 virtual void didReceiveData(ResourceHandle*, const char*, unsigned, int /*encodedDataLength*/) { } 72 WEBCORE_EXPORT virtual void didReceiveBuffer(ResourceHandle*, Ref<SharedBuffer>&&, int encodedDataLength); 73 74 virtual void didFinishLoading(ResourceHandle*) { } 75 virtual void didFail(ResourceHandle*, const ResourceError&) { } 76 virtual void wasBlocked(ResourceHandle*) { } 77 virtual void cannotShowURL(ResourceHandle*) { } 81 virtual bool loadingSynchronousXHR() { return false; } 78 82 79 virtual bool usesAsyncCallbacks() { return false; } 83 // Client will pass an updated request using ResourceHandle::continueWillSendRequest() when ready. 84 WEBCORE_EXPORT virtual void willSendRequestAsync(ResourceHandle*, ResourceRequest&&, ResourceResponse&&); 80 85 81 virtual bool loadingSynchronousXHR() { return false; } 82 83 // Client will pass an updated request using ResourceHandle::continueWillSendRequest() when ready. 84 WEBCORE_EXPORT virtual void willSendRequestAsync(ResourceHandle*, ResourceRequest&&, ResourceResponse&&); 85 86 // Client will call ResourceHandle::continueDidReceiveResponse() when ready. 87 WEBCORE_EXPORT virtual void didReceiveResponseAsync(ResourceHandle*, ResourceResponse&&); 86 // Client will call ResourceHandle::continueDidReceiveResponse() when ready. 87 WEBCORE_EXPORT virtual void didReceiveResponseAsync(ResourceHandle*, ResourceResponse&&); 88 88 89 89 #if USE(PROTECTION_SPACE_AUTH_CALLBACK) 90 91 90 // Client will pass an updated request using ResourceHandle::continueCanAuthenticateAgainstProtectionSpace() when ready. 91 WEBCORE_EXPORT virtual void canAuthenticateAgainstProtectionSpaceAsync(ResourceHandle*, const ProtectionSpace&); 92 92 #endif 93 93 // Client will pass an updated request using ResourceHandle::continueWillCacheResponse() when ready. 94 94 #if USE(CFURLCONNECTION) 95 95 WEBCORE_EXPORT virtual void willCacheResponseAsync(ResourceHandle*, CFCachedURLResponseRef); 96 96 #elif PLATFORM(COCOA) 97 WEBCORE_EXPORT virtual void willCacheResponseAsync(ResourceHandle*, NSCachedURLResponse *); 98 #endif 99 100 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK) 101 virtual bool supportsDataArray() { return false; } 102 virtual void didReceiveDataArray(ResourceHandle*, CFArrayRef) { } 97 WEBCORE_EXPORT virtual void willCacheResponseAsync(ResourceHandle*, NSCachedURLResponse *); 103 98 #endif 104 99 105 100 #if USE(SOUP) 106 101 virtual char* getOrCreateReadBuffer(size_t /*requestedLength*/, size_t& /*actualLength*/) { return 0; } 107 102 #endif 108 103 109 110 104 virtual bool shouldUseCredentialStorage(ResourceHandle*) { return false; } 105 virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) { } 111 106 #if USE(PROTECTION_SPACE_AUTH_CALLBACK) 112 107 virtual bool canAuthenticateAgainstProtectionSpace(ResourceHandle*, const ProtectionSpace&) { return false; } 113 108 #endif 114 109 virtual void receivedCancellation(ResourceHandle*, const AuthenticationChallenge&) { } 115 110 116 111 #if PLATFORM(IOS) || USE(CFURLCONNECTION) 117 112 virtual RetainPtr<CFDictionaryRef> connectionProperties(ResourceHandle*) { return nullptr; } 118 113 #endif 119 114 120 115 #if USE(CFURLCONNECTION) 121 116 virtual CFCachedURLResponseRef willCacheResponse(ResourceHandle*, CFCachedURLResponseRef response) { return response; } 122 117 #if PLATFORM(WIN) 123 118 virtual bool shouldCacheResponse(ResourceHandle*, CFCachedURLResponseRef) { return true; } 124 119 #endif // PLATFORM(WIN) 125 120 126 121 #elif PLATFORM(COCOA) 127 122 virtual NSCachedURLResponse *willCacheResponse(ResourceHandle*, NSCachedURLResponse *response) { return response; } 128 123 #endif 129 124 }; 130 125 131 126 } -
trunk/Source/WebCore/platform/network/cf/ResourceHandleCFURLConnectionDelegate.cpp
r207585 r215280 122 122 #endif // USE(PROTECTION_SPACE_AUTH_CALLBACK) 123 123 124 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)125 void ResourceHandleCFURLConnectionDelegate::didReceiveDataArrayCallback(CFURLConnectionRef, CFArrayRef dataArray, const void* clientInfo)126 {127 static_cast<ResourceHandleCFURLConnectionDelegate*>(const_cast<void*>(clientInfo))->didReceiveDataArray(dataArray);128 }129 #endif // USE(NETWORK_CFDATA_ARRAY_CALLBACK)130 131 124 RetainPtr<CFURLResponseRef> ResourceHandleCFURLConnectionDelegate::synthesizeRedirectResponseIfNecessary(CFURLRequestRef newRequest, CFURLResponseRef cfRedirectResponse) 132 125 { … … 208 201 #endif 209 202 0, 210 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)211 &ResourceHandleCFURLConnectionDelegate::didReceiveDataArrayCallback212 #else213 203 0 214 #endif215 204 }; 216 205 return client; -
trunk/Source/WebCore/platform/network/cf/ResourceHandleCFURLConnectionDelegate.h
r207151 r215280 73 73 static Boolean canRespondToProtectionSpaceCallback(CFURLConnectionRef, CFURLProtectionSpaceRef, const void* clientInfo); 74 74 #endif // USE(PROTECTION_SPACE_AUTH_CALLBACK) 75 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)76 static void didReceiveDataArrayCallback(CFURLConnectionRef, CFArrayRef, const void* clientInfo);77 #endif // USE(NETWORK_CFDATA_ARRAY_CALLBACK)78 75 79 76 virtual CFURLRequestRef willSendRequest(CFURLRequestRef, CFURLResponseRef) = 0; … … 89 86 virtual Boolean canRespondToProtectionSpace(CFURLProtectionSpaceRef) = 0; 90 87 #endif // USE(PROTECTION_SPACE_AUTH_CALLBACK) 91 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)92 virtual void didReceiveDataArray(CFArrayRef dataArray) = 0;93 #endif // USE(NETWORK_CFDATA_ARRAY_CALLBACK)94 88 95 89 protected: -
trunk/Source/WebCore/platform/network/cf/ResourceHandleCFURLConnectionDelegateWithOperationQueue.cpp
r212993 r215280 304 304 #endif // USE(PROTECTION_SPACE_AUTH_CALLBACK) 305 305 306 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)307 void ResourceHandleCFURLConnectionDelegateWithOperationQueue::didReceiveDataArray(CFArrayRef dataArray)308 {309 // FIXME: The block implicitly copies protector object, which is wasteful. We should just call ref(),310 // capture "this" by pointer value, and use a C++ lambda to prevent other unintentional capturing.311 RefPtr<ResourceHandleCFURLConnectionDelegateWithOperationQueue> protectedThis(this);312 CFRetain(dataArray);313 dispatch_async(dispatch_get_main_queue(), ^{314 if (protectedThis->hasHandle() && m_handle->client()) {315 LOG(Network, "CFNet - ResourceHandleCFURLConnectionDelegateWithOperationQueue::didSendBodyData(handle=%p) (%s)", m_handle, m_handle->firstRequest().url().string().utf8().data());316 317 m_handle->client()->didReceiveBuffer(m_handle, SharedBuffer::wrapCFDataArray(dataArray), -1);318 }319 CFRelease(dataArray);320 });321 }322 #endif // USE(NETWORK_CFDATA_ARRAY_CALLBACK)323 324 306 void ResourceHandleCFURLConnectionDelegateWithOperationQueue::continueWillSendRequest(CFURLRequestRef request) 325 307 { -
trunk/Source/WebCore/platform/network/cf/ResourceHandleCFURLConnectionDelegateWithOperationQueue.h
r207151 r215280 59 59 Boolean canRespondToProtectionSpace(CFURLProtectionSpaceRef) override; 60 60 #endif // USE(PROTECTION_SPACE_AUTH_CALLBACK) 61 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)62 void didReceiveDataArray(CFArrayRef dataArray) override;63 #endif // USE(NETWORK_CFDATA_ARRAY_CALLBACK)64 61 65 62 void continueWillSendRequest(CFURLRequestRef) override; -
trunk/Source/WebCore/platform/network/cf/SynchronousResourceHandleCFURLConnectionDelegate.cpp
r212993 r215280 273 273 #endif // USE(PROTECTION_SPACE_AUTH_CALLBACK) 274 274 275 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)276 void SynchronousResourceHandleCFURLConnectionDelegate::didReceiveDataArray(CFArrayRef dataArray)277 {278 if (!m_handle->client())279 return;280 281 LOG(Network, "CFNet - SynchronousResourceHandleCFURLConnectionDelegate::didReceiveDataArray(handle=%p, arrayLength=%ld) (%s)", m_handle, CFArrayGetCount(dataArray), m_handle->firstRequest().url().string().utf8().data());282 283 if (ResourceHandleClient* client = m_handle->client())284 client->didReceiveBuffer(m_handle, SharedBuffer::wrapCFDataArray(dataArray), -1);285 }286 #endif // USE(NETWORK_CFDATA_ARRAY_CALLBACK)287 288 275 void SynchronousResourceHandleCFURLConnectionDelegate::continueWillSendRequest(CFURLRequestRef) 289 276 { -
trunk/Source/WebCore/platform/network/cf/SynchronousResourceHandleCFURLConnectionDelegate.h
r207151 r215280 39 39 void didFinishLoading() override; 40 40 void didFail(CFErrorRef) override; 41 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)42 void didReceiveDataArray(CFArrayRef dataArray) override;43 #endif // USE(NETWORK_CFDATA_ARRAY_CALLBACK)44 41 45 42 private: -
trunk/Source/WebCore/platform/network/mac/WebCoreResourceHandleAsDelegate.mm
r212993 r215280 154 154 } 155 155 156 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)157 - (void)connection:(NSURLConnection *)connection didReceiveDataArray:(NSArray *)dataArray158 {159 UNUSED_PARAM(connection);160 LOG(Network, "Handle %p delegate connection:%p didReceiveDataArray:%p arraySize:%d", m_handle, connection, dataArray, [dataArray count]);161 162 if (!dataArray)163 return;164 165 if (!m_handle || !m_handle->client())166 return;167 168 m_handle->client()->didReceiveBuffer(m_handle, SharedBuffer::wrapCFDataArray(reinterpret_cast<CFArrayRef>(dataArray)), -1);169 // The call to didReceiveData above can cancel a load, and if so, the delegate (self) could have been deallocated by this point.170 }171 #endif172 173 156 - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data lengthReceived:(long long)lengthReceived 174 157 { -
trunk/Source/WebCore/platform/network/mac/WebCoreResourceHandleAsOperationQueueDelegate.mm
r212993 r215280 206 206 } 207 207 208 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)209 - (void)connection:(NSURLConnection *)connection didReceiveDataArray:(NSArray *)dataArray210 {211 ASSERT(!isMainThread());212 UNUSED_PARAM(connection);213 214 LOG(Network, "Handle %p delegate connection:%p didReceiveDataArray:%p arraySize:%d", m_handle, connection, dataArray, [dataArray count]);215 216 dispatch_async(dispatch_get_main_queue(), ^{217 if (!dataArray)218 return;219 220 if (!m_handle || !m_handle->client())221 return;222 223 m_handle->client()->didReceiveBuffer(m_handle, SharedBuffer::wrapCFDataArray(reinterpret_cast<CFArrayRef>(dataArray)), -1);224 // The call to didReceiveData above can cancel a load, and if so, the delegate (self) could have been deallocated by this point.225 });226 }227 #endif228 229 208 - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data lengthReceived:(long long)lengthReceived 230 209 { -
trunk/Source/WebKit2/ChangeLog
r215279 r215280 1 2017-04-12 Alex Christensen <achristensen@webkit.org> 2 3 Stop using didReceiveDataArray callback on El Capitan 4 https://bugs.webkit.org/show_bug.cgi?id=170780 5 6 Reviewed by Brady Eidson. 7 8 * NetworkProcess/NetworkLoad.cpp: 9 (WebKit::NetworkLoad::supportsDataArray): Deleted. 10 (WebKit::NetworkLoad::didReceiveDataArray): Deleted. 11 * NetworkProcess/NetworkLoad.h: 12 1 13 2017-04-12 Beth Dakin <bdakin@apple.com> 2 14 -
trunk/Source/WebKit2/NetworkProcess/NetworkLoad.cpp
r215152 r215280 525 525 #endif 526 526 527 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)528 bool NetworkLoad::supportsDataArray()529 {530 notImplemented();531 return false;532 }533 534 void NetworkLoad::didReceiveDataArray(ResourceHandle*, CFArrayRef)535 {536 ASSERT_NOT_REACHED();537 notImplemented();538 }539 #endif540 541 527 void NetworkLoad::didSendData(ResourceHandle* handle, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) 542 528 { -
trunk/Source/WebKit2/NetworkProcess/NetworkLoad.h
r215065 r215280 84 84 #if USE(PROTECTION_SPACE_AUTH_CALLBACK) 85 85 void canAuthenticateAgainstProtectionSpaceAsync(WebCore::ResourceHandle*, const WebCore::ProtectionSpace&) override; 86 #endif87 #if USE(NETWORK_CFDATA_ARRAY_CALLBACK)88 bool supportsDataArray() override;89 void didReceiveDataArray(WebCore::ResourceHandle*, CFArrayRef) override;90 86 #endif 91 87 #if PLATFORM(COCOA)
Note:
See TracChangeset
for help on using the changeset viewer.