Searched defs:ResourceFetcher (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/content/public/renderer/
H A Dresource_fetcher.h28 class CONTENT_EXPORT ResourceFetcher { class in namespace:content
30 virtual ~ResourceFetcher() {}
39 // Creates a ResourceFetcher and starts fetching the specified resource.
41 // ResourceFetcher will cancel the request, and the callback will never be
43 static ResourceFetcher* Create(const GURL& url,
/external/chromium/webkit/glue/
H A Dresource_fetcher.cc25 ResourceFetcher::ResourceFetcher(const GURL& url, WebFrame* frame, function in class:webkit_glue::ResourceFetcher
38 ResourceFetcher::~ResourceFetcher() {
43 void ResourceFetcher::Cancel() {
50 void ResourceFetcher::Start(WebFrame* frame) {
59 void ResourceFetcher::RunCallback(const WebURLResponse& response,
74 void ResourceFetcher::willSendRequest(
79 void ResourceFetcher::didSendData(
84 void ResourceFetcher
[all...]
H A Dresource_fetcher.h9 // ResourceFetcher::Delegate::OnURLFetchComplete will be called async after
10 // the ResourceFetcher object is created.
36 class ResourceFetcher : public WebKit::WebURLLoaderClient { class in namespace:webkit_glue
45 ResourceFetcher(
48 ~ResourceFetcher();
109 class ResourceFetcherWithTimeout : public ResourceFetcher {
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceFetcher.h68 // The ResourceFetcher provides a per-context interface to the MemoryCache
73 // RefPtr<ResourceFetcher> for their lifetime (and will create one if they
74 // are initialized without a Frame), so a Document can keep a ResourceFetcher
76 class ResourceFetcher : public RefCounted<ResourceFetcher>, public ResourceLoaderHost { class in namespace:WebCore
77 WTF_MAKE_NONCOPYABLE(ResourceFetcher); WTF_MAKE_FAST_ALLOCATED;
82 static PassRefPtr<ResourceFetcher> create(DocumentLoader* documentLoader) { return adoptRef(new ResourceFetcher(documentLoader)); }
83 virtual ~ResourceFetcher();
85 using RefCounted<ResourceFetcher>
[all...]
H A DResourceFetcher.cpp28 #include "core/fetch/ResourceFetcher.h"
188 static ResourceRequest::TargetType requestTargetType(const ResourceFetcher* fetcher, const ResourceRequest& request, Resource::Type type)
222 ResourceFetcher::ResourceFetcher(DocumentLoader* documentLoader) function in class:WebCore::ResourceFetcher
226 , m_garbageCollectDocumentResourcesTimer(this, &ResourceFetcher::garbageCollectDocumentResourcesTimerFired)
227 , m_resourceTimingReportTimer(this, &ResourceFetcher::resourceTimingReportTimerFired)
234 ResourceFetcher::~ResourceFetcher()
241 // Make sure no requests still point to this ResourceFetcher
245 Resource* ResourceFetcher
[all...]

Completed in 224 milliseconds