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/webkit/browser/appcache/
appcache_update_job.cc 117 AppCacheUpdateJob::URLFetcher::URLFetcher(const GURL& url,
130 AppCacheUpdateJob::URLFetcher::~URLFetcher() {
133 void AppCacheUpdateJob::URLFetcher::Start() {
142 void AppCacheUpdateJob::URLFetcher::OnReceivedRedirect(
153 void AppCacheUpdateJob::URLFetcher::OnResponseStarted(
191 base::Bind(&URLFetcher::OnWriteComplete, base::Unretained(this)));
204 void AppCacheUpdateJob::URLFetcher::OnReadCompleted(
230 void AppCacheUpdateJob::URLFetcher::AddConditionalHeaders
    [all...]
appcache_update_job.h 62 class URLFetcher;
68 typedef std::map<GURL, URLFetcher*> PendingUrlFetches;
110 class URLFetcher : public net::URLRequest::Delegate {
118 URLFetcher(const GURL& url,
121 virtual ~URLFetcher();
167 }; // class URLFetcher
195 void HandleManifestFetchCompleted(URLFetcher* fetcher);
198 void HandleUrlFetchCompleted(URLFetcher* fetcher);
199 void HandleMasterEntryFetchCompleted(URLFetcher* fetcher);
201 void HandleManifestRefetchCompleted(URLFetcher* fetcher)
    [all...]

Completed in 2125 milliseconds