| Index: net/url_request/url_request_http_job.cc
|
| diff --git a/net/url_request/url_request_http_job.cc b/net/url_request/url_request_http_job.cc
|
| index 7855fe25cac0af1be6f9e46ac04752f4c1274ae7..62f2254269f097d5bc8d07cc6c8ea4754eb0b2ab 100644
|
| --- a/net/url_request/url_request_http_job.cc
|
| +++ b/net/url_request/url_request_http_job.cc
|
| @@ -1204,17 +1204,6 @@ bool URLRequestHttpJob::GetRemoteEndpoint(IPEndPoint* endpoint) const {
|
| return transaction_->GetRemoteEndpoint(endpoint);
|
| }
|
|
|
| -bool URLRequestHttpJob::GetResponseCookies(std::vector<std::string>* cookies) {
|
| - DCHECK(transaction_.get());
|
| -
|
| - if (!response_info_)
|
| - return false;
|
| -
|
| - cookies->clear();
|
| - FetchResponseCookies(cookies);
|
| - return true;
|
| -}
|
| -
|
| int URLRequestHttpJob::GetResponseCode() const {
|
| DCHECK(transaction_.get());
|
|
|
|
|