HomeSort by relevance Sort by last modified time
    Searched refs:URLRequestFtpJob (Results 1 - 7 of 7) sorted by null

  /external/chromium/net/url_request/
url_request_ftp_job.h 25 class URLRequestFtpJob : public URLRequestJob {
27 explicit URLRequestFtpJob(URLRequest* request);
37 virtual ~URLRequestFtpJob();
66 CompletionCallbackImpl<URLRequestFtpJob> start_callback_;
67 CompletionCallbackImpl<URLRequestFtpJob> read_callback_;
77 ScopedRunnableMethodFactory<URLRequestFtpJob> method_factory_;
79 DISALLOW_COPY_AND_ASSIGN(URLRequestFtpJob);
url_request_ftp_job.cc 22 URLRequestFtpJob::URLRequestFtpJob(URLRequest* request)
25 start_callback_(this, &URLRequestFtpJob::OnStartCompleted)),
27 read_callback_(this, &URLRequestFtpJob::OnReadCompleted)),
34 URLRequestJob* URLRequestFtpJob::Factory(URLRequest* request,
45 return new URLRequestFtpJob(request);
48 bool URLRequestFtpJob::GetMimeType(std::string* mime_type) const {
56 HostPortPair URLRequestFtpJob::GetSocketAddress() const {
63 URLRequestFtpJob::~URLRequestFtpJob() {
    [all...]
url_request_job_manager.cc 38 { "ftp", URLRequestFtpJob::Factory },
  /external/chromium_org/net/url_request/
url_request_ftp_job.cc 26 URLRequestFtpJob::URLRequestFtpJob(
45 URLRequestFtpJob::~URLRequestFtpJob() {
50 bool URLRequestFtpJob::IsSafeRedirect(const GURL& location) {
55 bool URLRequestFtpJob::GetMimeType(std::string* mime_type) const {
70 void URLRequestFtpJob::GetResponseInfo(HttpResponseInfo* info) {
75 HostPortPair URLRequestFtpJob::GetSocketAddress() const {
87 void URLRequestFtpJob::SetPriority(RequestPriority priority) {
93 void URLRequestFtpJob::Start()
    [all...]
url_request_ftp_job.h 29 class NET_EXPORT_PRIVATE URLRequestFtpJob : public URLRequestJob {
31 URLRequestFtpJob(URLRequest* request,
37 virtual ~URLRequestFtpJob();
97 base::WeakPtrFactory<URLRequestFtpJob> weak_factory_;
102 DISALLOW_COPY_AND_ASSIGN(URLRequestFtpJob);
ftp_protocol_handler.cc 36 return new URLRequestFtpJob(request,
url_request_ftp_job_unittest.cc 92 // Inherit from URLRequestFtpJob to expose the priority and some
94 class TestURLRequestFtpJob : public URLRequestFtpJob {
99 : URLRequestFtpJob(request, NULL, ftp_factory, ftp_auth_cache) {}
101 using URLRequestFtpJob::SetPriority;
102 using URLRequestFtpJob::Start;
103 using URLRequestFtpJob::Kill;
104 using URLRequestFtpJob::priority;
142 // Make sure that SetPriority actually sets the URLRequestFtpJob's
162 // Make sure that URLRequestFtpJob passes on its priority to its
177 // Make sure that URLRequestFtpJob passes on its priority updates t
    [all...]

Completed in 114 milliseconds