| Index: net/url_request/url_request_job.cc
 | 
| diff --git a/net/url_request/url_request_job.cc b/net/url_request/url_request_job.cc
 | 
| index ac051270ccf588a4164cf8e6b31267a6479c6ab5..941ed4150cc8b54096ee5334648106580b2197de 100644
 | 
| --- a/net/url_request/url_request_job.cc
 | 
| +++ b/net/url_request/url_request_job.cc
 | 
| @@ -190,6 +190,15 @@ void URLRequestJob::ContinueWithCertificate(
 | 
|    NOTREACHED();
 | 
|  }
 | 
|  
 | 
| +void URLRequestJob::ContinueWithTLSLogin() {
 | 
| +  NOTREACHED();
 | 
| +}
 | 
| +
 | 
| +void URLRequestJob::CancelTLSLogin() {
 | 
| +  // The derived class should implement this!
 | 
| +  NOTREACHED();
 | 
| +}
 | 
| +
 | 
|  void URLRequestJob::ContinueDespiteLastError() {
 | 
|    // Implementations should know how to recover from errors they generate.
 | 
|    // If this code was reached, we are trying to recover from an error that
 | 
| 
 |