HomeSort by relevance Sort by last modified time
    Searched refs:sendResourceLoadCallbacks (Results 1 - 13 of 13) sorted by null

  /external/webkit/Source/WebCore/loader/
SubresourceLoader.h 44 static PassRefPtr<SubresourceLoader> create(Frame*, SubresourceLoaderClient*, const ResourceRequest&, SecurityCheckPolicy = DoSecurityCheck, bool sendResourceLoadCallbacks = true, bool shouldContentSniff = true, const String& optionalOutgoingReferrer = String(), bool shouldBufferData = true);
49 SubresourceLoader(Frame*, SubresourceLoaderClient*, bool sendResourceLoadCallbacks, bool shouldContentSniff);
SubresourceLoader.cpp 46 SubresourceLoader::SubresourceLoader(Frame* frame, SubresourceLoaderClient* client, bool sendResourceLoadCallbacks, bool shouldContentSniff)
47 : ResourceLoader(frame, sendResourceLoadCallbacks, shouldContentSniff)
63 PassRefPtr<SubresourceLoader> SubresourceLoader::create(Frame* frame, SubresourceLoaderClient* client, const ResourceRequest& request, SecurityCheckPolicy securityCheck, bool sendResourceLoadCallbacks, bool shouldContentSniff, const String& optionalOutgoingReferrer, bool shouldBufferData)
97 RefPtr<SubresourceLoader> subloader(adoptRef(new SubresourceLoader(frame, client, sendResourceLoadCallbacks, shouldContentSniff)));
ResourceLoader.h 137 bool sendResourceLoadCallbacks() const { return m_sendResourceLoadCallbacks; }
144 ResourceLoader(Frame*, bool sendResourceLoadCallbacks, bool shouldContentSniff);
ResourceLoadScheduler.h 53 PassRefPtr<SubresourceLoader> scheduleSubresourceLoad(Frame*, SubresourceLoaderClient*, const ResourceRequest&, ResourceLoadPriority = ResourceLoadPriorityLow, SecurityCheckPolicy = DoSecurityCheck, bool sendResourceLoadCallbacks = true, bool shouldContentSniff = true, const String& optionalOutgoingReferrer = String(), bool shouldBufferData = true);
ResourceLoadScheduler.cpp 87 bool sendResourceLoadCallbacks, bool shouldContentSniff, const String& optionalOutgoingReferrer, bool shouldBufferData)
89 RefPtr<SubresourceLoader> loader = SubresourceLoader::create(frame, client, request, securityCheck, sendResourceLoadCallbacks, shouldContentSniff, optionalOutgoingReferrer, shouldBufferData);
ResourceLoader.cpp 61 ResourceLoader::ResourceLoader(Frame* frame, bool sendResourceLoadCallbacks, bool shouldContentSniff)
68 , m_sendResourceLoadCallbacks(sendResourceLoadCallbacks)
FrameLoader.cpp     [all...]
  /external/webkit/Source/WebCore/loader/cache/
CachedResourceRequest.h 40 static PassRefPtr<CachedResourceRequest> load(CachedResourceLoader*, CachedResource*, bool incremental, SecurityCheckPolicy, bool sendResourceLoadCallbacks);
CachedResource.h 84 void load(CachedResourceLoader*, bool incremental, SecurityCheckPolicy, bool sendResourceLoadCallbacks);
188 bool sendResourceLoadCallbacks() const { return m_sendResourceLoadCallbacks; }
CachedResourceRequest.cpp 88 PassRefPtr<CachedResourceRequest> CachedResourceRequest::load(CachedResourceLoader* cachedResourceLoader, CachedResource* resource, bool incremental, SecurityCheckPolicy securityCheck, bool sendResourceLoadCallbacks)
124 request.get(), resourceRequest, priority, securityCheck, sendResourceLoadCallbacks);
CachedResource.cpp 130 void CachedResource::load(CachedResourceLoader* cachedResourceLoader, bool incremental, SecurityCheckPolicy securityCheck, bool sendResourceLoadCallbacks)
132 m_sendResourceLoadCallbacks = sendResourceLoadCallbacks;
133 cachedResourceLoader->load(this, incremental, securityCheck, sendResourceLoadCallbacks);
CachedResourceLoader.h 100 void load(CachedResource*, bool incremental = false, SecurityCheckPolicy = DoSecurityCheck, bool sendResourceLoadCallbacks = true);
CachedResourceLoader.cpp 185 userSheet->load(this, /*incremental*/ false, SkipSecurityCheck, /*sendResourceLoadCallbacks*/ false);
594 void CachedResourceLoader::load(CachedResource* resource, bool incremental, SecurityCheckPolicy securityCheck, bool sendResourceLoadCallbacks)
598 RefPtr<CachedResourceRequest> request = CachedResourceRequest::load(this, resource, incremental, securityCheck, sendResourceLoadCallbacks);

Completed in 133 milliseconds