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

Side by Side Diff: net/quic/quic_data_stream_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/quic_data_stream.h ('k') | net/quic/quic_headers_stream.cc » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_data_stream.h" 5 #include "net/quic/quic_data_stream.h"
6 6
7 #include "net/quic/quic_ack_notifier.h" 7 #include "net/quic/quic_ack_notifier.h"
8 #include "net/quic/quic_connection.h" 8 #include "net/quic/quic_connection.h"
9 #include "net/quic/quic_utils.h" 9 #include "net/quic/quic_utils.h"
10 #include "net/quic/quic_write_blocked_list.h" 10 #include "net/quic/quic_write_blocked_list.h"
11 #include "net/quic/spdy_utils.h" 11 #include "net/quic/spdy_utils.h"
12 #include "net/quic/test_tools/quic_flow_controller_peer.h" 12 #include "net/quic/test_tools/quic_flow_controller_peer.h"
13 #include "net/quic/test_tools/quic_session_peer.h" 13 #include "net/quic/test_tools/quic_session_peer.h"
14 #include "net/quic/test_tools/quic_test_utils.h" 14 #include "net/quic/test_tools/quic_test_utils.h"
15 #include "net/quic/test_tools/reliable_quic_stream_peer.h" 15 #include "net/quic/test_tools/reliable_quic_stream_peer.h"
16 #include "net/test/gtest_util.h" 16 #include "net/test/gtest_util.h"
17 #include "testing/gmock/include/gmock/gmock.h" 17 #include "testing/gmock/include/gmock/gmock.h"
18 18
19 using base::StringPiece; 19 using base::StringPiece;
20 using std::min; 20 using std::min;
21 using std::string;
21 using testing::AnyNumber; 22 using testing::AnyNumber;
22 using testing::InSequence; 23 using testing::InSequence;
23 using testing::Return; 24 using testing::Return;
24 using testing::SaveArg; 25 using testing::SaveArg;
25 using testing::StrictMock; 26 using testing::StrictMock;
26 using testing::_; 27 using testing::_;
27 28
28 namespace net { 29 namespace net {
29 namespace test { 30 namespace test {
30 namespace { 31 namespace {
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 EXPECT_CALL(*connection_, SendBlocked(kClientDataStreamId1)).Times(0); 529 EXPECT_CALL(*connection_, SendBlocked(kClientDataStreamId1)).Times(0);
529 EXPECT_CALL(*session_, WritevData(kClientDataStreamId1, _, _, _, _, _)) 530 EXPECT_CALL(*session_, WritevData(kClientDataStreamId1, _, _, _, _, _))
530 .WillOnce(Return(QuicConsumedData(0, fin))); 531 .WillOnce(Return(QuicConsumedData(0, fin)));
531 532
532 stream_->WriteOrBufferData(body, fin, nullptr); 533 stream_->WriteOrBufferData(body, fin, nullptr);
533 } 534 }
534 535
535 } // namespace 536 } // namespace
536 } // namespace test 537 } // namespace test
537 } // namespace net 538 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/quic_data_stream.h ('k') | net/quic/quic_headers_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698