Changeset 163550 in webkit
- Timestamp:
- Feb 6, 2014, 10:54:31 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r163547 r163550 1 2014-02-06 Anders Carlsson <andersca@apple.com> 2 3 Try to fix the Windows build. 4 5 * loader/DocumentThreadableLoader.cpp: 6 (WebCore::DocumentThreadableLoader::didReceiveResponse): 7 1 8 2014-01-29 Sergio Villar Senin <svillar@igalia.com> 2 9 -
trunk/Source/WebCore/loader/DocumentThreadableLoader.cpp
r163545 r163550 259 259 } 260 260 261 auto preflightResult = std::make_unique<CrossOriginPreflightResultCacheItem>(static_cast<StoredCredentials>(m_options.allowCredentials)); 261 StoredCredentials allowCredentials = m_options.allowCredentials; 262 auto preflightResult = std::make_unique<CrossOriginPreflightResultCacheItem>(allowCredentials); 262 263 if (!preflightResult->parse(response, accessControlErrorDescription) 263 264 || !preflightResult->allowsCrossOriginMethod(m_actualRequest->httpMethod(), accessControlErrorDescription)
Note:
See TracChangeset
for help on using the changeset viewer.