Commit c0168829 authored by willchan@chromium.org's avatar willchan@chromium.org

Fix use-after-frees in some SPDY tests.

BUG=106979
TEST=none


Review URL: http://codereview.chromium.org/8896016

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113912 0039d316-1c4b-4281-b951-d872f2087c98
parent 1b2336a3
...@@ -4199,8 +4199,8 @@ TEST_P(SpdyNetworkTransactionTest, SettingsSaved) { ...@@ -4199,8 +4199,8 @@ TEST_P(SpdyNetworkTransactionTest, SettingsSaved) {
"version", "HTTP/1.1" "version", "HTTP/1.1"
}; };
NormalSpdyTransactionHelper helper(CreateGetRequest(), BoundNetLog net_log;
BoundNetLog(), GetParam()); NormalSpdyTransactionHelper helper(CreateGetRequest(), net_log, GetParam());
helper.RunPreTestSetup(); helper.RunPreTestSetup();
// Verify that no settings exist initially. // Verify that no settings exist initially.
...@@ -4310,8 +4310,8 @@ TEST_P(SpdyNetworkTransactionTest, SettingsPlayback) { ...@@ -4310,8 +4310,8 @@ TEST_P(SpdyNetworkTransactionTest, SettingsPlayback) {
"version", "HTTP/1.1" "version", "HTTP/1.1"
}; };
NormalSpdyTransactionHelper helper(CreateGetRequest(), BoundNetLog net_log;
BoundNetLog(), GetParam()); NormalSpdyTransactionHelper helper(CreateGetRequest(), net_log, GetParam());
helper.RunPreTestSetup(); helper.RunPreTestSetup();
// Verify that no settings exist initially. // Verify that no settings exist initially.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment