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

Unified Diff: net/quic/congestion_control/send_algorithm_simulator.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: resolve ramant's comment, using std:: for .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 side-by-side diff with in-line comments
Download patch
Index: net/quic/congestion_control/send_algorithm_simulator.cc
diff --git a/net/quic/congestion_control/send_algorithm_simulator.cc b/net/quic/congestion_control/send_algorithm_simulator.cc
index 765394342fbaf0c8cee6006480fa820438d4abc5..8549b408b303975fd07d6635d44df6c6db6a9dd6 100644
--- a/net/quic/congestion_control/send_algorithm_simulator.cc
+++ b/net/quic/congestion_control/send_algorithm_simulator.cc
@@ -5,6 +5,7 @@
#include "net/quic/congestion_control/send_algorithm_simulator.h"
#include <limits>
+#include <string>
ramant (doing other things) 2014/12/03 01:10:09 send_algorithm_simulator.h has included string.
#include "base/logging.h"
#include "base/rand_util.h"
@@ -14,6 +15,7 @@ using std::list;
using std::make_pair;
using std::max;
using std::min;
+using std::string;
using std::vector;
namespace net {

Powered by Google App Engine
This is Rietveld 408576698