Title: [163550] trunk/Source/WebCore
Revision
163550
Author
[email protected]
Date
2014-02-06 10:54:31 -0800 (Thu, 06 Feb 2014)

Log Message

Try to fix the Windows build.

* loader/DocumentThreadableLoader.cpp:
(WebCore::DocumentThreadableLoader::didReceiveResponse):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (163549 => 163550)


--- trunk/Source/WebCore/ChangeLog	2014-02-06 18:45:32 UTC (rev 163549)
+++ trunk/Source/WebCore/ChangeLog	2014-02-06 18:54:31 UTC (rev 163550)
@@ -1,3 +1,10 @@
+2014-02-06  Anders Carlsson  <[email protected]>
+
+        Try to fix the Windows build.
+
+        * loader/DocumentThreadableLoader.cpp:
+        (WebCore::DocumentThreadableLoader::didReceiveResponse):
+
 2014-01-29  Sergio Villar Senin  <[email protected]>
 
         [CSS Grid Layout] getComputedStyle() is wrong for grid-definition-{columns|rows}

Modified: trunk/Source/WebCore/loader/DocumentThreadableLoader.cpp (163549 => 163550)


--- trunk/Source/WebCore/loader/DocumentThreadableLoader.cpp	2014-02-06 18:45:32 UTC (rev 163549)
+++ trunk/Source/WebCore/loader/DocumentThreadableLoader.cpp	2014-02-06 18:54:31 UTC (rev 163550)
@@ -258,7 +258,8 @@
             return;
         }
 
-        auto preflightResult = std::make_unique<CrossOriginPreflightResultCacheItem>(static_cast<StoredCredentials>(m_options.allowCredentials));
+        StoredCredentials allowCredentials = m_options.allowCredentials;
+        auto preflightResult = std::make_unique<CrossOriginPreflightResultCacheItem>(allowCredentials);
         if (!preflightResult->parse(response, accessControlErrorDescription)
             || !preflightResult->allowsCrossOriginMethod(m_actualRequest->httpMethod(), accessControlErrorDescription)
             || !preflightResult->allowsCrossOriginHeaders(m_actualRequest->httpHeaderFields(), accessControlErrorDescription)) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to