Searched defs:URLFetcher (Results 1 - 4 of 4) sorted by last modified time

/external/chromium_org/net/url_request/
H A Durl_fetcher.cc12 URLFetcher::~URLFetcher() {}
15 URLFetcher* net::URLFetcher::Create(
17 URLFetcher::RequestType request_type,
19 return URLFetcher::Create(0, url, request_type, d);
23 URLFetcher* net::URLFetcher::Create(
26 URLFetcher::RequestType request_type,
34 void net::URLFetcher
[all...]
H A Durl_fetcher.h40 // scoped_ptr<URLFetcher> fetcher(URLFetcher::Create("http://www.google.com",
41 // URLFetcher::GET,
55 // You may cancel the request by destroying the URLFetcher:
60 // OnURLFetchComplete() will be called with a pointer to the URLFetcher. From
61 // that point until the original URLFetcher instance is destroyed, you may use
63 // objects if you need them to live longer than the URLFetcher instance. If the
64 // URLFetcher instance is destroyed before the callback happens, the fetch will
67 // You may create the URLFetcher instance on any thread; OnURLFetchComplete()
71 // NOTE: By default URLFetcher request
73 class NET_EXPORT URLFetcher { class in namespace:net
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_update_job.cc127 AppCacheUpdateJob::URLFetcher::URLFetcher(const GURL& url, function in class:content::AppCacheUpdateJob::URLFetcher
140 AppCacheUpdateJob::URLFetcher::~URLFetcher() {
143 void AppCacheUpdateJob::URLFetcher::Start() {
152 void AppCacheUpdateJob::URLFetcher::OnReceivedRedirect(
175 void AppCacheUpdateJob::URLFetcher::OnResponseStarted(
213 base::Bind(&URLFetcher::OnWriteComplete, base::Unretained(this)));
226 void AppCacheUpdateJob::URLFetcher::OnReadCompleted(
252 void AppCacheUpdateJob::URLFetcher
[all...]
H A Dappcache_update_job.h58 class URLFetcher;
64 typedef std::map<GURL, URLFetcher*> PendingUrlFetches;
106 class URLFetcher : public net::URLRequest::Delegate { class in class:content::AppCacheUpdateJob
114 URLFetcher(const GURL& url,
117 virtual ~URLFetcher();
163 }; // class URLFetcher
191 void HandleManifestFetchCompleted(URLFetcher* fetcher);
194 void HandleUrlFetchCompleted(URLFetcher* fetcher);
195 void HandleMasterEntryFetchCompleted(URLFetcher* fetcher);
197 void HandleManifestRefetchCompleted(URLFetcher* fetche
[all...]

Completed in 254 milliseconds