diff options
-rw-r--r-- | net/spdy/spdy_network_transaction_unittest.cc | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/net/spdy/spdy_network_transaction_unittest.cc b/net/spdy/spdy_network_transaction_unittest.cc index 2b5d60f..0e9e64c 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)); |