Changeset 186508 in webkit


Ignore:
Timestamp:
Jul 8, 2015, 9:41:48 AM (10 years ago)
Author:
matthew_hanson@apple.com
Message:

Merge r186389. rdar://problem/21708243

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  
     12015-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
    1162015-07-08  Matthew Hanson  <matthew_hanson@apple.com>
    217
  • branches/safari-600.1.4.17-branch/Source/WebCore/platform/graphics/avfoundation/cf/WebCoreAVCFResourceLoader.cpp

    r170562 r186508  
    7373    URL requestURL = CFURLRequestGetURL(urlRequest.get());
    7474
    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));
    7677
    7778    request.mutableResourceRequest().setPriority(ResourceLoadPriorityLow);
Note: See TracChangeset for help on using the changeset viewer.