diff options
author | ttuttle@chromium.org <ttuttle@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-20 06:50:04 +0000 |
---|---|---|
committer | ttuttle@chromium.org <ttuttle@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-20 06:50:04 +0000 |
commit | 79e1fd6eccb6f3eeab76d51722e2f9f1ca5650b4 (patch) | |
tree | 7ba0fec996fd7d2ea09ddfef6df2af4652c6b68c /chrome_frame | |
parent | 217d824a769edd7d7dcee63669a6836a78f74a32 (diff) | |
download | chromium_src-79e1fd6eccb6f3eeab76d51722e2f9f1ca5650b4.zip chromium_src-79e1fd6eccb6f3eeab76d51722e2f9f1ca5650b4.tar.gz chromium_src-79e1fd6eccb6f3eeab76d51722e2f9f1ca5650b4.tar.bz2 |
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
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=199535
Review URL: https://chromiumcodereview.appspot.com/12621011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207341 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/test/net/fake_external_tab.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome_frame/test/net/fake_external_tab.cc b/chrome_frame/test/net/fake_external_tab.cc index e688b50..a8e811f 100644 --- a/chrome_frame/test/net/fake_external_tab.cc +++ b/chrome_frame/test/net/fake_external_tab.cc @@ -319,7 +319,10 @@ void FilterDisabledTests() { "HTTPSRequestTest.TLSv1Fallback", "HTTPSOCSPTest.*", "HTTPSEVCRLSetTest.*", - "HTTPSCRLSetTest.*" + "HTTPSCRLSetTest.*", + + // Chrome Frame doesn't support GetFullRequestHeaders. + "URLRequestTest*.*_GetFullRequestHeaders" }; const char* ie9_disabled_tests[] = { |