diff options
author | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-25 01:07:02 +0000 |
---|---|---|
committer | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-25 01:07:02 +0000 |
commit | 57dab122d40a8fc987f2ae9d481d34e3e9206106 (patch) | |
tree | c5a0ce03f09519c4dc4565e9508cbd35e0ffd1c2 | |
parent | 0da1171013699e9d83216ea53a3811e06a0ce43d (diff) | |
download | chromium_src-57dab122d40a8fc987f2ae9d481d34e3e9206106.zip chromium_src-57dab122d40a8fc987f2ae9d481d34e3e9206106.tar.gz chromium_src-57dab122d40a8fc987f2ae9d481d34e3e9206106.tar.bz2 |
Remove LOG(INFO)'s from spdy_network_transaction_unittest.cc - Revert r244946
BUG=395354
Review URL: https://codereview.chromium.org/416153002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285444 0039d316-1c4b-4281-b951-d872f2087c98
-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)); |