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

  /external/chromium_org/net/url_request/
url_fetcher.cc 12 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::CancelAll()
    [all...]
url_fetcher.h 40 // 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 requests are NOT intercepted, except whe
    [all...]
  /external/chromium_org/content/browser/appcache/
appcache_update_job.cc 127 AppCacheUpdateJob::URLFetcher::URLFetcher(const GURL& url,
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::AddConditionalHeaders
    [all...]
appcache_update_job.h 58 class URLFetcher;
64 typedef std::map<GURL, URLFetcher*> PendingUrlFetches;
106 class URLFetcher : public net::URLRequest::Delegate {
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* fetcher)
    [all...]

Completed in 167 milliseconds