Index: net/spdy/spdy_network_transaction_unittest.cc |
diff --git a/net/spdy/spdy_network_transaction_unittest.cc b/net/spdy/spdy_network_transaction_unittest.cc |
index 2b5d60f02f45039118edf3e096150d82aa849ff7..0e9e64c11d0aa4835e1a56ced4dfdf104c3eaee5 100644 |
--- a/net/spdy/spdy_network_transaction_unittest.cc |
+++ b/net/spdy/spdy_network_transaction_unittest.cc |
@@ -117,25 +117,20 @@ class SpdyNetworkTransactionTest |
: public ::testing::TestWithParam<SpdyNetworkTransactionTestParams> { |
protected: |
SpdyNetworkTransactionTest() : spdy_util_(GetParam().protocol) { |
- LOG(INFO) << __FUNCTION__; |
} |
virtual ~SpdyNetworkTransactionTest() { |
- LOG(INFO) << __FUNCTION__; |
// UploadDataStream posts deletion tasks back to the message loop on |
// destruction. |
upload_data_stream_.reset(); |
base::RunLoop().RunUntilIdle(); |
- LOG(INFO) << __FUNCTION__; |
} |
virtual void SetUp() { |
- LOG(INFO) << __FUNCTION__; |
google_get_request_initialized_ = false; |
google_post_request_initialized_ = false; |
google_chunked_post_request_initialized_ = false; |
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir()); |
- LOG(INFO) << __FUNCTION__; |
} |
struct TransactionHelperResult { |
@@ -201,7 +196,6 @@ class SpdyNetworkTransactionTest |
} |
void RunPreTestSetup() { |
- LOG(INFO) << __FUNCTION__; |
if (!session_deps_.get()) |
session_deps_.reset(CreateSpdySessionDependencies(test_params_)); |
if (!session_.get()) { |
@@ -211,16 +205,13 @@ class SpdyNetworkTransactionTest |
// We're now ready to use SSL-npn SPDY. |
trans_.reset(new HttpNetworkTransaction(priority_, session_.get())); |
- LOG(INFO) << __FUNCTION__; |
} |
// Start the transaction, read some data, finish. |
void RunDefaultTest() { |
- LOG(INFO) << __FUNCTION__; |
if (!StartDefaultTest()) |
return; |
FinishDefaultTest(); |
- LOG(INFO) << __FUNCTION__; |
} |
bool StartDefaultTest() { |
@@ -736,20 +727,15 @@ INSTANTIATE_TEST_CASE_P( |
// Verify HttpNetworkTransaction constructor. |
TEST_P(SpdyNetworkTransactionTest, Constructor) { |
- LOG(INFO) << __FUNCTION__; |
scoped_ptr<SpdySessionDependencies> session_deps( |
CreateSpdySessionDependencies(GetParam())); |
- LOG(INFO) << __FUNCTION__; |
scoped_refptr<HttpNetworkSession> session( |
SpdySessionDependencies::SpdyCreateSession(session_deps.get())); |
- LOG(INFO) << __FUNCTION__; |
scoped_ptr<HttpTransaction> trans( |
new HttpNetworkTransaction(DEFAULT_PRIORITY, session.get())); |
- LOG(INFO) << __FUNCTION__; |
} |
TEST_P(SpdyNetworkTransactionTest, Get) { |
- LOG(INFO) << __FUNCTION__; |
// Construct the request. |
scoped_ptr<SpdyFrame> req( |
spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, true)); |