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

Unified Diff: net/tools/quic/test_tools/quic_test_utils.cc

Issue 1034823002: QUIC - minor changes found while merging with the internal source. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0324
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/tools/quic/test_tools/quic_test_utils.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/test_tools/quic_test_utils.cc
diff --git a/net/tools/quic/test_tools/quic_test_utils.cc b/net/tools/quic/test_tools/quic_test_utils.cc
index c3d449b948cc5dabfa64d17193407713f17c5640..5e954dd1297c38bb73d7ff6e6ac4eafbdf84a8ee 100644
--- a/net/tools/quic/test_tools/quic_test_utils.cc
+++ b/net/tools/quic/test_tools/quic_test_utils.cc
@@ -123,12 +123,11 @@ MockTimeWaitListManager::MockTimeWaitListManager(
QuicSupportedVersions()) {
// Though AddConnectionIdToTimeWait is mocked, we want to retain its
// functionality.
- EXPECT_CALL(*this, AddConnectionIdToTimeWait(_, _, _))
- .Times(AnyNumber());
+ EXPECT_CALL(*this, AddConnectionIdToTimeWait(_, _, _)).Times(AnyNumber());
ON_CALL(*this, AddConnectionIdToTimeWait(_, _, _))
- .WillByDefault(Invoke(this,
- &MockTimeWaitListManager::
- QuicTimeWaitListManager_AddConnectionIdToTimeWait));
+ .WillByDefault(
+ Invoke(this, &MockTimeWaitListManager::
+ QuicTimeWaitListManager_AddConnectionIdToTimeWait));
}
MockTimeWaitListManager::~MockTimeWaitListManager() {
« no previous file with comments | « net/tools/quic/test_tools/quic_test_utils.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698