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

Side by Side Diff: net/quic/test_tools/quic_test_utils.h

Issue 1659733003: Remove VisitorShim and move shim behavior into QuicConnection. No (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@112975672
Patch Set: Created 4 years, 10 months 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_session.cc ('k') | no next file » | 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 // Common utilities for Quic tests 5 // Common utilities for Quic tests
6 6
7 #ifndef NET_QUIC_TEST_TOOLS_QUIC_TEST_UTILS_H_ 7 #ifndef NET_QUIC_TEST_TOOLS_QUIC_TEST_UTILS_H_
8 #define NET_QUIC_TEST_TOOLS_QUIC_TEST_UTILS_H_ 8 #define NET_QUIC_TEST_TOOLS_QUIC_TEST_UTILS_H_
9 9
10 #include <stddef.h> 10 #include <stddef.h>
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 MOCK_METHOD0(OnWriteBlocked, void()); 295 MOCK_METHOD0(OnWriteBlocked, void());
296 MOCK_METHOD0(OnCanWrite, void()); 296 MOCK_METHOD0(OnCanWrite, void());
297 MOCK_METHOD1(OnCongestionWindowChange, void(QuicTime now)); 297 MOCK_METHOD1(OnCongestionWindowChange, void(QuicTime now));
298 MOCK_METHOD0(OnConnectionMigration, void()); 298 MOCK_METHOD0(OnConnectionMigration, void());
299 MOCK_CONST_METHOD0(WillingAndAbleToWrite, bool()); 299 MOCK_CONST_METHOD0(WillingAndAbleToWrite, bool());
300 MOCK_CONST_METHOD0(HasPendingHandshake, bool()); 300 MOCK_CONST_METHOD0(HasPendingHandshake, bool());
301 MOCK_CONST_METHOD0(HasOpenDynamicStreams, bool()); 301 MOCK_CONST_METHOD0(HasOpenDynamicStreams, bool());
302 MOCK_METHOD1(OnSuccessfulVersionNegotiation, 302 MOCK_METHOD1(OnSuccessfulVersionNegotiation,
303 void(const QuicVersion& version)); 303 void(const QuicVersion& version));
304 MOCK_METHOD0(OnConfigNegotiated, void()); 304 MOCK_METHOD0(OnConfigNegotiated, void());
305 MOCK_METHOD0(PostProcessAfterData, void());
305 306
306 private: 307 private:
307 DISALLOW_COPY_AND_ASSIGN(MockConnectionVisitor); 308 DISALLOW_COPY_AND_ASSIGN(MockConnectionVisitor);
308 }; 309 };
309 310
310 class MockConnectionHelper : public QuicConnectionHelperInterface { 311 class MockConnectionHelper : public QuicConnectionHelperInterface {
311 public: 312 public:
312 MockConnectionHelper(); 313 MockConnectionHelper();
313 ~MockConnectionHelper() override; 314 ~MockConnectionHelper() override;
314 const QuicClock* GetClock() const override; 315 const QuicClock* GetClock() const override;
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 TestQuicSpdyServerSession** server_session); 812 TestQuicSpdyServerSession** server_session);
812 813
813 // Helper to generate client side stream ids, generalizes 814 // Helper to generate client side stream ids, generalizes
814 // kClientDataStreamId1 etc. above. 815 // kClientDataStreamId1 etc. above.
815 QuicStreamId QuicClientDataStreamId(int i); 816 QuicStreamId QuicClientDataStreamId(int i);
816 817
817 } // namespace test 818 } // namespace test
818 } // namespace net 819 } // namespace net
819 820
820 #endif // NET_QUIC_TEST_TOOLS_QUIC_TEST_UTILS_H_ 821 #endif // NET_QUIC_TEST_TOOLS_QUIC_TEST_UTILS_H_
OLDNEW
« no previous file with comments | « net/quic/quic_session.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698