Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Side by Side Diff: net/quic/quic_connection_test.cc

Issue 763833003: Remove using namespace in net/quic/quic_stream_sequencer.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix missing part device_cloud_policy_manager_chromeos_unittest.cc Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/quic/crypto/crypto_utils_test.cc ('k') | net/quic/quic_crypto_client_stream.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "net/quic/quic_connection.h" 5 #include "net/quic/quic_connection.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/stl_util.h" 9 #include "base/stl_util.h"
10 #include "net/base/net_errors.h" 10 #include "net/base/net_errors.h"
(...skipping 13 matching lines...) Expand all
24 #include "net/quic/test_tools/quic_framer_peer.h" 24 #include "net/quic/test_tools/quic_framer_peer.h"
25 #include "net/quic/test_tools/quic_packet_creator_peer.h" 25 #include "net/quic/test_tools/quic_packet_creator_peer.h"
26 #include "net/quic/test_tools/quic_sent_packet_manager_peer.h" 26 #include "net/quic/test_tools/quic_sent_packet_manager_peer.h"
27 #include "net/quic/test_tools/quic_test_utils.h" 27 #include "net/quic/test_tools/quic_test_utils.h"
28 #include "net/quic/test_tools/simple_quic_framer.h" 28 #include "net/quic/test_tools/simple_quic_framer.h"
29 #include "testing/gmock/include/gmock/gmock.h" 29 #include "testing/gmock/include/gmock/gmock.h"
30 #include "testing/gtest/include/gtest/gtest.h" 30 #include "testing/gtest/include/gtest/gtest.h"
31 31
32 using base::StringPiece; 32 using base::StringPiece;
33 using std::map; 33 using std::map;
34 using std::string;
34 using std::vector; 35 using std::vector;
35 using testing::AnyNumber; 36 using testing::AnyNumber;
36 using testing::AtLeast; 37 using testing::AtLeast;
37 using testing::ContainerEq; 38 using testing::ContainerEq;
38 using testing::Contains; 39 using testing::Contains;
39 using testing::DoAll; 40 using testing::DoAll;
40 using testing::InSequence; 41 using testing::InSequence;
41 using testing::InvokeWithoutArgs; 42 using testing::InvokeWithoutArgs;
42 using testing::NiceMock; 43 using testing::NiceMock;
43 using testing::Ref; 44 using testing::Ref;
(...skipping 4210 matching lines...) Expand 10 before | Expand all | Expand 10 after
4254 QuicBlockedFrame blocked; 4255 QuicBlockedFrame blocked;
4255 blocked.stream_id = 3; 4256 blocked.stream_id = 3;
4256 EXPECT_CALL(visitor_, OnBlockedFrames(_)); 4257 EXPECT_CALL(visitor_, OnBlockedFrames(_));
4257 ProcessFramePacket(QuicFrame(&blocked)); 4258 ProcessFramePacket(QuicFrame(&blocked));
4258 EXPECT_TRUE(ack_alarm->IsSet()); 4259 EXPECT_TRUE(ack_alarm->IsSet());
4259 } 4260 }
4260 4261
4261 } // namespace 4262 } // namespace
4262 } // namespace test 4263 } // namespace test
4263 } // namespace net 4264 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/crypto/crypto_utils_test.cc ('k') | net/quic/quic_crypto_client_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698