HomeSort by relevance Sort by last modified time
    Searched defs:URLFetcher (Results 1 - 6 of 6) 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 36 // URLFetcher* fetcher = URLFetcher::Create("http://www.google.com",
37 // URLFetcher::GET, this);
53 // OnURLFetchComplete() will be called with a pointer to the URLFetcher. From
54 // that point until the original URLFetcher instance is destroyed, you may use
56 // objects if you need them to live longer than the URLFetcher instance. If the
57 // URLFetcher instance is destroyed before the callback happens, the fetch will
60 // You may create the URLFetcher instance on any thread; OnURLFetchComplete()
64 // NOTE: By default URLFetcher requests are NOT intercepted, except when
66 class NET_EXPORT URLFetcher {
    [all...]
  /external/chromium/chrome/common/net/
url_fetcher.h 5 // This file contains URLFetcher, a wrapper around net::URLRequest that handles
10 // NOTE(willchan): Only one "IO" thread is supported for URLFetcher. This is a
36 // URLFetcher* fetcher = new URLFetcher("http://www.google.com",
37 // URLFetcher::GET, this);
46 // The object you supply as a delegate must inherit from URLFetcher::Delegate;
49 // until the original URLFetcher instance is destroyed, you may examine the
51 // need them to live longer than the URLFetcher instance.) If the URLFetcher
55 // You may create the URLFetcher instance on any thread; OnURLFetchComplete(
    [all...]
url_fetcher.cc 33 class URLFetcher::Core
34 : public base::RefCountedThreadSafe<URLFetcher::Core>,
41 Core(URLFetcher* fetcher,
44 URLFetcher::Delegate* d);
65 URLFetcher::Delegate* delegate() const { return delegate_; }
70 friend class base::RefCountedThreadSafe<URLFetcher::Core>;
117 URLFetcher* fetcher_; // Corresponding fetcher object
121 URLFetcher::Delegate* delegate_; // Object to notify on completion
160 // specified by the owner URLFetcher instance, we'll give up.
163 // True if the URLFetcher has been cancelled
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_update_job.cc 94 AppCacheUpdateJob::URLFetcher::URLFetcher(
104 AppCacheUpdateJob::URLFetcher::~URLFetcher() {
107 void AppCacheUpdateJob::URLFetcher::Start() {
116 void AppCacheUpdateJob::URLFetcher::OnReceivedRedirect(
124 void AppCacheUpdateJob::URLFetcher::OnResponseStarted(
156 base::Bind(&URLFetcher::OnWriteComplete, base::Unretained(this)));
165 void AppCacheUpdateJob::URLFetcher::OnReadCompleted(
188 void AppCacheUpdateJob::URLFetcher::AddConditionalHeaders
    [all...]
appcache_update_job.h 45 class URLFetcher;
51 typedef std::map<GURL, URLFetcher*> PendingUrlFetches;
93 class URLFetcher : public net::URLRequest::Delegate {
101 URLFetcher(const GURL& url,
104 virtual ~URLFetcher();
146 }; // class URLFetcher
166 void HandleManifestFetchCompleted(URLFetcher* fetcher);
169 void HandleUrlFetchCompleted(URLFetcher* fetcher);
170 void HandleMasterEntryFetchCompleted(URLFetcher* fetcher);
172 void HandleManifestRefetchCompleted(URLFetcher* fetcher)
    [all...]

Completed in 741 milliseconds