summaryrefslogtreecommitdiffstats
path: root/net/flip/flip_framer_test.cc
diff options
context:
space:
mode:
authormbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-07 01:55:21 +0000
committermbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-07 01:55:21 +0000
commitd8c21a50746fefcf8fcffc8bdbd2556327f9fed7 (patch)
tree9ef7ca3eae5cafc1730cfd4aef3bd3042a53c276 /net/flip/flip_framer_test.cc
parent35d6eed02986291766d65cfce79d01c9556cfad6 (diff)
downloadchromium_src-d8c21a50746fefcf8fcffc8bdbd2556327f9fed7.zip
chromium_src-d8c21a50746fefcf8fcffc8bdbd2556327f9fed7.tar.gz
chromium_src-d8c21a50746fefcf8fcffc8bdbd2556327f9fed7.tar.bz2
Remove VLOG statements which aren't needed and don't work well in chrome.
BUG=none TEST=none Review URL: http://codereview.chromium.org/257074 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28212 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/flip/flip_framer_test.cc')
-rw-r--r--net/flip/flip_framer_test.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/net/flip/flip_framer_test.cc b/net/flip/flip_framer_test.cc
index a786bc2..473338d 100644
--- a/net/flip/flip_framer_test.cc
+++ b/net/flip/flip_framer_test.cc
@@ -61,18 +61,15 @@ class TestFlipVisitor : public FlipFramerVisitorInterface {
reinterpret_cast<const FlipFrame*>(frame), &headers);
DCHECK(parsed_headers);
syn_frame_count_++;
- VLOG(2) << "OnSyn(" << frame->stream_id() << ")\n";
break;
case SYN_REPLY:
parsed_headers = framer_->ParseHeaderBlock(
reinterpret_cast<const FlipFrame*>(frame), &headers);
DCHECK(parsed_headers);
syn_reply_frame_count_++;
- VLOG(2) << "OnSynReply(" << frame->stream_id() << ")\n";
break;
case FIN_STREAM:
fin_frame_count_++;
- VLOG(2) << "OnFin(" << frame->stream_id() << ")\n";
break;
default:
DCHECK(false); // Error!