diff options
author | garykac@google.com <garykac@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-20 19:17:07 +0000 |
---|---|---|
committer | garykac@google.com <garykac@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-20 19:17:07 +0000 |
commit | 41ce748fa3c97b271d7db197616fd01f13053ef7 (patch) | |
tree | c9221f5e703b5f0ac21109d45d891523cd8e93f7 /remoting | |
parent | 418efc772164193c3fb13a54ecf1e785ff5f30f0 (diff) | |
download | chromium_src-41ce748fa3c97b271d7db197616fd01f13053ef7.zip chromium_src-41ce748fa3c97b271d7db197616fd01f13053ef7.tar.gz chromium_src-41ce748fa3c97b271d7db197616fd01f13053ef7.tar.bz2 |
Remove noisy LOG(INFO) lines from chromoting unittests.
BUG=none
TEST=remoting unittests
Review URL: http://codereview.chromium.org/3186006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56898 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/base/codec_test.cc | 1 | ||||
-rw-r--r-- | remoting/jingle_glue/jingle_thread.cc | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/remoting/base/codec_test.cc b/remoting/base/codec_test.cc index b0628fb..fd4469c 100644 --- a/remoting/base/codec_test.cc +++ b/remoting/base/codec_test.cc @@ -203,7 +203,6 @@ class DecoderTester { // Test the content of the update rect. for (size_t i = 0; i < update_rects_.size(); ++i) { - LOG(INFO) << "Testing Rect " << i; EXPECT_FALSE(rects_.empty()); gfx::Rect rect = rects_.front(); rects_.pop_front(); diff --git a/remoting/jingle_glue/jingle_thread.cc b/remoting/jingle_glue/jingle_thread.cc index b11637d..a00ce59 100644 --- a/remoting/jingle_glue/jingle_thread.cc +++ b/remoting/jingle_glue/jingle_thread.cc @@ -41,8 +41,6 @@ void JingleThread::Start() { } void JingleThread::Run() { - LOG(INFO) << "Started Jingle thread."; - MessageLoopForIO message_loop; message_loop_ = &message_loop; @@ -60,8 +58,6 @@ void JingleThread::Run() { task_pump_ = NULL; message_loop_ = NULL; - - LOG(INFO) << "Jingle thread finished."; } // This method is called every 20ms to process tasks from |message_loop_| |