Title: [151880] trunk/Source/WebCore
Revision
151880
Author
[email protected]
Date
2013-06-22 16:16:42 -0700 (Sat, 22 Jun 2013)

Log Message

Build fix after r151878.

* platform/graphics/avfoundation/objc/WebCoreAVFResourceLoader.mm:
(WebCore::WebCoreAVFResourceLoader::startLoading): Pass the new UseDefaultOriginRestrictionsForType
argument to the ResourceLoaderOptions constructor.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (151879 => 151880)


--- trunk/Source/WebCore/ChangeLog	2013-06-22 20:29:30 UTC (rev 151879)
+++ trunk/Source/WebCore/ChangeLog	2013-06-22 23:16:42 UTC (rev 151880)
@@ -1,3 +1,11 @@
+2013-06-22  Mark Rowe  <[email protected]>
+
+        Build fix after r151878.
+
+        * platform/graphics/avfoundation/objc/WebCoreAVFResourceLoader.mm:
+        (WebCore::WebCoreAVFResourceLoader::startLoading): Pass the new UseDefaultOriginRestrictionsForType
+        argument to the ResourceLoaderOptions constructor.
+
 2013-06-22  Simon Fraser  <[email protected]>
 
         Followup from r151877 .

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/objc/WebCoreAVFResourceLoader.mm (151879 => 151880)


--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/WebCoreAVFResourceLoader.mm	2013-06-22 20:29:30 UTC (rev 151879)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/WebCoreAVFResourceLoader.mm	2013-06-22 23:16:42 UTC (rev 151880)
@@ -68,7 +68,7 @@
 
     KURL requestURL = [[m_avRequest.get() request] URL];
 
-    CachedResourceRequest request(ResourceRequest(requestURL), ResourceLoaderOptions(SendCallbacks, DoNotSniffContent, BufferData, DoNotAllowStoredCredentials, DoNotAskClientForCrossOriginCredentials, DoSecurityCheck));
+    CachedResourceRequest request(ResourceRequest(requestURL), ResourceLoaderOptions(SendCallbacks, DoNotSniffContent, BufferData, DoNotAllowStoredCredentials, DoNotAskClientForCrossOriginCredentials, DoSecurityCheck, UseDefaultOriginRestrictionsForType));
 
     request.mutableResourceRequest().setPriority(ResourceLoadPriorityLow);
     CachedResourceLoader* loader = m_parent->player()->cachedResourceLoader();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to