Title: [186637] branches/safari-600.8-branch/Source/WebCore
Revision
186637
Author
matthew_han...@apple.com
Date
2015-07-09 15:00:53 -0700 (Thu, 09 Jul 2015)

Log Message

Merge r186508. rdar://problem/21707887

Modified Paths

Diff

Modified: branches/safari-600.8-branch/Source/WebCore/ChangeLog (186636 => 186637)


--- branches/safari-600.8-branch/Source/WebCore/ChangeLog	2015-07-09 21:59:33 UTC (rev 186636)
+++ branches/safari-600.8-branch/Source/WebCore/ChangeLog	2015-07-09 22:00:53 UTC (rev 186637)
@@ -1,5 +1,24 @@
 2015-07-09  Matthew Hanson  <matthew_han...@apple.com>
 
+        Merge r186508. rdar://problem/21707887
+
+    2015-07-08  Matthew Hanson  <matthew_han...@apple.com>
+
+            Merge r186389. rdar://problem/21708243
+
+        2015-07-06  Daniel Bates  <daba...@apple.com>
+
+                Fix the Windows build following <https://trac.webkit.org/changeset/186388>
+                (https://bugs.webkit.org/show_bug.cgi?id=144830)
+
+                As we for for Mac in WebCoreAVFResourceLoader::startLoading(), instantiate ResourceLoaderOptions
+                with ContentSecurityPolicyImposition::DoPolicyCheck.
+
+                * platform/graphics/avfoundation/cf/WebCoreAVCFResourceLoader.cpp:
+                (WebCore::WebCoreAVCFResourceLoader::startLoading):
+
+2015-07-09  Matthew Hanson  <matthew_han...@apple.com>
+
         Merge r186591. rdar://problem/21716407
 
     2015-07-09  David Kilzer  <ddkil...@apple.com>

Modified: branches/safari-600.8-branch/Source/WebCore/platform/graphics/avfoundation/cf/WebCoreAVCFResourceLoader.cpp (186636 => 186637)


--- branches/safari-600.8-branch/Source/WebCore/platform/graphics/avfoundation/cf/WebCoreAVCFResourceLoader.cpp	2015-07-09 21:59:33 UTC (rev 186636)
+++ branches/safari-600.8-branch/Source/WebCore/platform/graphics/avfoundation/cf/WebCoreAVCFResourceLoader.cpp	2015-07-09 22:00:53 UTC (rev 186637)
@@ -72,7 +72,8 @@
     RetainPtr<CFURLRequestRef> urlRequest = AVCFAssetResourceLoadingRequestGetURLRequest(m_avRequest.get());
     URL requestURL = CFURLRequestGetURL(urlRequest.get());
 
-    CachedResourceRequest request(ResourceRequest(requestURL), ResourceLoaderOptions(SendCallbacks, DoNotSniffContent, BufferData, DoNotAllowStoredCredentials, DoNotAskClientForCrossOriginCredentials, DoSecurityCheck, UseDefaultOriginRestrictionsForType));
+    // ContentSecurityPolicyImposition::DoPolicyCheck is a placeholder value. It does not affect the request since Content Security Policy does not apply to raw resources.
+    CachedResourceRequest request(ResourceRequest(requestURL), ResourceLoaderOptions(SendCallbacks, DoNotSniffContent, BufferData, DoNotAllowStoredCredentials, DoNotAskClientForCrossOriginCredentials, DoSecurityCheck, UseDefaultOriginRestrictionsForType, ContentSecurityPolicyImposition::DoPolicyCheck));
 
     request.mutableResourceRequest().setPriority(ResourceLoadPriorityLow);
     CachedResourceLoader* loader = m_parent->player()->cachedResourceLoader();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to