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

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

Issue 243533003: Sent QUIC "PING" frames when a stream is open and the connection (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more cleanup Created 6 years, 8 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 | Annotate | Revision Log
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 <string> 10 #include <string>
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 void(const std::vector<QuicWindowUpdateFrame>& frame)); 259 void(const std::vector<QuicWindowUpdateFrame>& frame));
260 MOCK_METHOD1(OnBlockedFrames, 260 MOCK_METHOD1(OnBlockedFrames,
261 void(const std::vector<QuicBlockedFrame>& frame)); 261 void(const std::vector<QuicBlockedFrame>& frame));
262 MOCK_METHOD1(OnRstStream, void(const QuicRstStreamFrame& frame)); 262 MOCK_METHOD1(OnRstStream, void(const QuicRstStreamFrame& frame));
263 MOCK_METHOD1(OnGoAway, void(const QuicGoAwayFrame& frame)); 263 MOCK_METHOD1(OnGoAway, void(const QuicGoAwayFrame& frame));
264 MOCK_METHOD2(OnConnectionClosed, void(QuicErrorCode error, bool from_peer)); 264 MOCK_METHOD2(OnConnectionClosed, void(QuicErrorCode error, bool from_peer));
265 MOCK_METHOD0(OnWriteBlocked, void()); 265 MOCK_METHOD0(OnWriteBlocked, void());
266 MOCK_METHOD0(OnCanWrite, void()); 266 MOCK_METHOD0(OnCanWrite, void());
267 MOCK_CONST_METHOD0(HasPendingWrites, bool()); 267 MOCK_CONST_METHOD0(HasPendingWrites, bool());
268 MOCK_CONST_METHOD0(HasPendingHandshake, bool()); 268 MOCK_CONST_METHOD0(HasPendingHandshake, bool());
269 MOCK_CONST_METHOD0(HasOpenStreams, bool());
269 MOCK_METHOD1(OnSuccessfulVersionNegotiation, 270 MOCK_METHOD1(OnSuccessfulVersionNegotiation,
270 void(const QuicVersion& version)); 271 void(const QuicVersion& version));
271 MOCK_METHOD0(OnConfigNegotiated, void()); 272 MOCK_METHOD0(OnConfigNegotiated, void());
272 273
273 private: 274 private:
274 DISALLOW_COPY_AND_ASSIGN(MockConnectionVisitor); 275 DISALLOW_COPY_AND_ASSIGN(MockConnectionVisitor);
275 }; 276 };
276 277
277 class MockHelper : public QuicConnectionHelperInterface { 278 class MockHelper : public QuicConnectionHelperInterface {
278 public: 279 public:
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 528
528 protected: 529 protected:
529 // Object is ref counted. 530 // Object is ref counted.
530 virtual ~MockAckNotifierDelegate(); 531 virtual ~MockAckNotifierDelegate();
531 }; 532 };
532 533
533 } // namespace test 534 } // namespace test
534 } // namespace net 535 } // namespace net
535 536
536 #endif // NET_QUIC_TEST_TOOLS_QUIC_TEST_UTILS_H_ 537 #endif // NET_QUIC_TEST_TOOLS_QUIC_TEST_UTILS_H_
OLDNEW
« net/quic/quic_session.cc ('K') | « net/quic/test_tools/quic_connection_peer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698