OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <iostream> | 5 #include <iostream> |
6 #include "base/scoped_ptr.h" | 6 #include "base/scoped_ptr.h" |
7 | 7 |
8 #include "flip_framer.h" // cross-google3 directory naming. | 8 #include "flip_framer.h" // cross-google3 directory naming. |
9 #include "flip_protocol.h" | 9 #include "flip_protocol.h" |
10 #include "flip_frame_builder.h" | 10 #include "flip_frame_builder.h" |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 EXPECT_EQ(0, visitor.error_count_); | 242 EXPECT_EQ(0, visitor.error_count_); |
243 EXPECT_EQ(2, visitor.syn_frame_count_); | 243 EXPECT_EQ(2, visitor.syn_frame_count_); |
244 EXPECT_EQ(0, visitor.syn_reply_frame_count_); | 244 EXPECT_EQ(0, visitor.syn_reply_frame_count_); |
245 EXPECT_EQ(4, visitor.data_frame_count_); | 245 EXPECT_EQ(4, visitor.data_frame_count_); |
246 EXPECT_EQ(2, visitor.fin_frame_count_); | 246 EXPECT_EQ(2, visitor.fin_frame_count_); |
247 } | 247 } |
248 | 248 |
249 } // namespace flip | 249 } // namespace flip |
250 | 250 |
251 | 251 |
OLD | NEW |