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

  /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...]

Completed in 357 milliseconds