| Index: net/url_request/url_request_ftp_job.h
|
| diff --git a/net/url_request/url_request_ftp_job.h b/net/url_request/url_request_ftp_job.h
|
| index a7398913914ed37bf96c0ca9849553b8960487b3..a229ca5cacb7af5745b45b54dfa3b3b71b0133d7 100644
|
| --- a/net/url_request/url_request_ftp_job.h
|
| +++ b/net/url_request/url_request_ftp_job.h
|
| @@ -80,6 +80,8 @@ class NET_EXPORT_PRIVATE URLRequestFtpJob : public URLRequestJob {
|
| int buf_size,
|
| int *bytes_read) OVERRIDE;
|
|
|
| + void HandleAuthNeededResponse();
|
| +
|
| RequestPriority priority_;
|
|
|
| ProxyInfo proxy_info_;
|
| @@ -90,11 +92,11 @@ class NET_EXPORT_PRIVATE URLRequestFtpJob : public URLRequestJob {
|
|
|
| HttpRequestInfo http_request_info_;
|
| scoped_ptr<HttpTransaction> http_transaction_;
|
| - const HttpResponseInfo* response_info_;
|
| + const HttpResponseInfo* http_response_info_;
|
|
|
| bool read_in_progress_;
|
|
|
| - scoped_refptr<AuthData> server_auth_;
|
| + scoped_refptr<AuthData> auth_data_;
|
|
|
| base::WeakPtrFactory<URLRequestFtpJob> weak_factory_;
|
|
|
|
|