summaryrefslogtreecommitdiffstats
path: root/net/url_request/url_request.h
diff options
context:
space:
mode:
authorttuttle@chromium.org <ttuttle@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-10 22:02:40 +0000
committerttuttle@chromium.org <ttuttle@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-10 22:02:40 +0000
commit1e110eae63af401b7bdf5d123c619a53fd2c993f (patch)
tree2406fe3ddfbf914888adaf9ac1968d6e1b3b1d88 /net/url_request/url_request.h
parent190fc1da6e1a3b79cf0e29d072f84669d3b9ad76 (diff)
downloadchromium_src-1e110eae63af401b7bdf5d123c619a53fd2c993f.zip
chromium_src-1e110eae63af401b7bdf5d123c619a53fd2c993f.tar.gz
chromium_src-1e110eae63af401b7bdf5d123c619a53fd2c993f.tar.bz2
Revert 199535 "Add GetFullRequestHeaders, from URLRequestJob to ..."
> Add GetFullRequestHeaders, from URLRequestJob to HttpNetworkTransaction. > > Dev Tools displays the raw request and response headers. Right now, it gets > them by snarfing them out of the NetLog, which is bad, as the NetLog is for > huamn consumption only. I'm trying to refactor the DevToolsNetLogObserver > away; providing an alternate, supported path to get the request headers is the > first step. > > BUG=196304 > TEST=added to URLRequest, HttpTransaction, and HttpNetworkTransaction unittests > > Review URL: https://chromiumcodereview.appspot.com/12621011 TBR=ttuttle@chromium.org Review URL: https://codereview.chromium.org/15054003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@199553 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request/url_request.h')
-rw-r--r--net/url_request/url_request.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/net/url_request/url_request.h b/net/url_request/url_request.h
index 1b461c1..111f8d3 100644
--- a/net/url_request/url_request.h
+++ b/net/url_request/url_request.h
@@ -421,21 +421,6 @@ class NET_EXPORT URLRequest : NON_EXPORTED_BASE(public base::NonThreadSafe),
return extra_request_headers_;
}
- // Gets the full request headers sent to the server.
- //
- // Return true and overwrites headers if it can get the request headers;
- // otherwise, returns false and does not modify headers. (Always returns
- // false for request types that don't have headers, like file requests.)
- //
- // This is guaranteed to succeed if:
- //
- // 1. A redirect or auth callback is currently running. Once it ends, the
- // headers may become unavailable as a new request with the new address
- // or credentials is made.
- //
- // 2. The OnResponseStarted callback is currently running or has run.
- bool GetFullRequestHeaders(HttpRequestHeaders* headers) const;
-
// Returns the current load state for the request. |param| is an optional
// parameter describing details related to the load state. Not all load states
// have a parameter.