Home | History | Annotate | Download | only in autofill

Lines Matching refs:URLFetcher

38 // another thread, but (since it's trying to behave like a URLFetcher)
53 // A class that implements the same API as URLFetcher but instead of
57 // It extends URLFetcher so as to minimise the diff in other code when
58 // using this class in place of URLFetcher. It uses a private
59 // URLFetcher instance to do the network request and thus implements
60 // URLFetcher::Delegate. We always use
69 class URLFetcherProxy : public URLFetcher, public URLFetcher::Delegate {
72 URLFetcher::RequestType request_type,
73 URLFetcher::Delegate* d)
74 : URLFetcher(url /*unused*/, URLFetcher::POST /*unused*/, d),
108 virtual void OnURLFetchComplete(const URLFetcher* source,
133 real_fetcher_.reset(new URLFetcher(url_, request_type_, this));
154 scoped_ptr<URLFetcher> real_fetcher_;
155 URLFetcher::RequestType request_type_;