Changeset 186508 in webkit
- Timestamp:
- Jul 8, 2015, 9:41:48 AM (10 years ago)
- Location:
- branches/safari-600.1.4.17-branch/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-600.1.4.17-branch/Source/WebCore/ChangeLog
r186507 r186508 1 2015-07-08 Matthew Hanson <matthew_hanson@apple.com> 2 3 Merge r186389. rdar://problem/21708243 4 5 2015-07-06 Daniel Bates <dabates@apple.com> 6 7 Fix the Windows build following <https://trac.webkit.org/changeset/186388> 8 (https://bugs.webkit.org/show_bug.cgi?id=144830) 9 10 As we for for Mac in WebCoreAVFResourceLoader::startLoading(), instantiate ResourceLoaderOptions 11 with ContentSecurityPolicyImposition::DoPolicyCheck. 12 13 * platform/graphics/avfoundation/cf/WebCoreAVCFResourceLoader.cpp: 14 (WebCore::WebCoreAVCFResourceLoader::startLoading): 15 1 16 2015-07-08 Matthew Hanson <matthew_hanson@apple.com> 2 17 -
branches/safari-600.1.4.17-branch/Source/WebCore/platform/graphics/avfoundation/cf/WebCoreAVCFResourceLoader.cpp
r170562 r186508 73 73 URL requestURL = CFURLRequestGetURL(urlRequest.get()); 74 74 75 CachedResourceRequest request(ResourceRequest(requestURL), ResourceLoaderOptions(SendCallbacks, DoNotSniffContent, BufferData, DoNotAllowStoredCredentials, DoNotAskClientForCrossOriginCredentials, DoSecurityCheck, UseDefaultOriginRestrictionsForType)); 75 // ContentSecurityPolicyImposition::DoPolicyCheck is a placeholder value. It does not affect the request since Content Security Policy does not apply to raw resources. 76 CachedResourceRequest request(ResourceRequest(requestURL), ResourceLoaderOptions(SendCallbacks, DoNotSniffContent, BufferData, DoNotAllowStoredCredentials, DoNotAskClientForCrossOriginCredentials, DoSecurityCheck, UseDefaultOriginRestrictionsForType, ContentSecurityPolicyImposition::DoPolicyCheck)); 76 77 77 78 request.mutableResourceRequest().setPriority(ResourceLoadPriorityLow);
Note:
See TracChangeset
for help on using the changeset viewer.