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

Unified Diff: net/quic/congestion_control/send_algorithm_simulator.h

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: Created 6 years, 1 month 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.h
diff --git a/net/quic/congestion_control/send_algorithm_simulator.h b/net/quic/congestion_control/send_algorithm_simulator.h
index 7f52d8ffa3f3e479447c84ea70641e0269ae4517..4be7c8344e21cb517d116ad4d34beaf68ba56a0c 100644
--- a/net/quic/congestion_control/send_algorithm_simulator.h
+++ b/net/quic/congestion_control/send_algorithm_simulator.h
@@ -80,7 +80,7 @@ class SendAlgorithmSimulator {
Transfer(Sender* sender,
QuicByteCount num_bytes,
QuicTime start_time,
- string name);
+ std::string name);
Sender* sender;
QuicByteCount num_bytes;
@@ -88,7 +88,7 @@ class SendAlgorithmSimulator {
QuicByteCount bytes_lost;
QuicByteCount bytes_in_flight;
QuicTime start_time;
- string name;
+ std::string name;
};
struct SentPacket {
@@ -158,7 +158,7 @@ class SendAlgorithmSimulator {
// Adds a pending sending to start at the specified time.
void AddTransfer(
- Sender* sender, size_t num_bytes, QuicTime start_time, string name);
+ Sender* sender, size_t num_bytes, QuicTime start_time, std::string name);
// Convenience method to transfer all bytes.
void TransferBytes();

Powered by Google App Engine
This is Rietveld 408576698