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

Unified Diff: net/quic/core/congestion_control/simulation/port.cc

Issue 2322233004: Landing Recent QUIC changes until Sun Sep 4 03:41:00 (Closed)
Patch Set: Remove simulation files from the build. Created 4 years, 3 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
Index: net/quic/core/congestion_control/simulation/port.cc
diff --git a/net/quic/core/congestion_control/simulation/port.cc b/net/quic/core/congestion_control/simulation/port.cc
new file mode 100644
index 0000000000000000000000000000000000000000..24315b5ba8b7b78dbbe26edb4d0b088cd7fdeb6c
--- /dev/null
+++ b/net/quic/core/congestion_control/simulation/port.cc
@@ -0,0 +1,21 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "net/quic/core/congestion_control/simulation/port.h"
+
+namespace net {
+namespace simulation {
+
+Packet::Packet()
+ : source(), destination(), tx_timestamp(QuicTime::Zero()), size(0) {}
+
+Packet::~Packet() {}
+
+Packet::Packet(const Packet& packet) = default;
+
+Endpoint::Endpoint(Simulator* simulator, std::string name)
+ : Actor(simulator, name) {}
+
+} // namespace simulation
+} // namespace net
« no previous file with comments | « net/quic/core/congestion_control/simulation/port.h ('k') | net/quic/core/congestion_control/simulation/queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698