| 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();
|
|
|