Changeset 163550 in webkit


Ignore:
Timestamp:
Feb 6, 2014, 10:54:31 AM (12 years ago)
Author:
andersca@apple.com
Message:

Try to fix the Windows build.

  • loader/DocumentThreadableLoader.cpp:

(WebCore::DocumentThreadableLoader::didReceiveResponse):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r163547 r163550  
     12014-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
    182014-01-29  Sergio Villar Senin  <svillar@igalia.com>
    29
  • trunk/Source/WebCore/loader/DocumentThreadableLoader.cpp

    r163545 r163550  
    259259        }
    260260
    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);
    262263        if (!preflightResult->parse(response, accessControlErrorDescription)
    263264            || !preflightResult->allowsCrossOriginMethod(m_actualRequest->httpMethod(), accessControlErrorDescription)
Note: See TracChangeset for help on using the changeset viewer.