diff options
author | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-25 04:59:28 +0000 |
---|---|---|
committer | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-25 04:59:28 +0000 |
commit | b2504c91e4ba11a184d52b74cbfd06e488d358cb (patch) | |
tree | 761150afb081e512dc6976bb8f58976a82eeca30 /net | |
parent | 7d412f74d3cb9166de934209d4e366e8aef5b7bf (diff) | |
download | chromium_src-b2504c91e4ba11a184d52b74cbfd06e488d358cb.zip chromium_src-b2504c91e4ba11a184d52b74cbfd06e488d358cb.tar.gz chromium_src-b2504c91e4ba11a184d52b74cbfd06e488d358cb.tar.bz2 |
net: Remove unused URLRequest::job()
It's good timing to delete this method since it's unused.
BUG=None
TEST=build
Review URL: https://chromiumcodereview.appspot.com/11260013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164017 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/url_request/url_request.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/net/url_request/url_request.h b/net/url_request/url_request.h index dcb1523..737cef8 100644 --- a/net/url_request/url_request.h +++ b/net/url_request/url_request.h @@ -638,10 +638,6 @@ class NET_EXPORT URLRequest : NON_EXPORTED_BASE(public base::NonThreadSafe), // due to HSTS. If so, |redirect_url| is rewritten to the new HTTPS URL. bool GetHSTSRedirect(GURL* redirect_url) const; - // This method is intended only for unit tests, but it is being used by - // unit tests outside of net :(. - URLRequestJob* job() { return job_; } - // TODO(willchan): Undo this. Only temporarily public. bool has_delegate() const { return delegate_ != NULL; } |