Changeset 151880 in webkit


Ignore:
Timestamp:
Jun 22, 2013, 4:16:42 PM (12 years ago)
Author:
mrowe@apple.com
Message:

Build fix after r151878.

  • platform/graphics/avfoundation/objc/WebCoreAVFResourceLoader.mm:

(WebCore::WebCoreAVFResourceLoader::startLoading): Pass the new UseDefaultOriginRestrictionsForType
argument to the ResourceLoaderOptions constructor.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r151879 r151880  
     12013-06-22  Mark Rowe  <mrowe@apple.com>
     2
     3        Build fix after r151878.
     4
     5        * platform/graphics/avfoundation/objc/WebCoreAVFResourceLoader.mm:
     6        (WebCore::WebCoreAVFResourceLoader::startLoading): Pass the new UseDefaultOriginRestrictionsForType
     7        argument to the ResourceLoaderOptions constructor.
     8
    192013-06-22  Simon Fraser  <simon.fraser@apple.com>
    210
  • trunk/Source/WebCore/platform/graphics/avfoundation/objc/WebCoreAVFResourceLoader.mm

    r138819 r151880  
    6969    KURL requestURL = [[m_avRequest.get() request] URL];
    7070
    71     CachedResourceRequest request(ResourceRequest(requestURL), ResourceLoaderOptions(SendCallbacks, DoNotSniffContent, BufferData, DoNotAllowStoredCredentials, DoNotAskClientForCrossOriginCredentials, DoSecurityCheck));
     71    CachedResourceRequest request(ResourceRequest(requestURL), ResourceLoaderOptions(SendCallbacks, DoNotSniffContent, BufferData, DoNotAllowStoredCredentials, DoNotAskClientForCrossOriginCredentials, DoSecurityCheck, UseDefaultOriginRestrictionsForType));
    7272
    7373    request.mutableResourceRequest().setPriority(ResourceLoadPriorityLow);
Note: See TracChangeset for help on using the changeset viewer.