| Index: net/tools/quic/quic_server_session.h | 
| diff --git a/net/tools/quic/quic_server_session.h b/net/tools/quic/quic_server_session.h | 
| index 603ad3520d2d7450dcc69d1aa5eb5e8d4ff6052d..81cae1283630acf01e7083b34a9ea6d1667831fe 100644 | 
| --- a/net/tools/quic/quic_server_session.h | 
| +++ b/net/tools/quic/quic_server_session.h | 
| @@ -8,6 +8,7 @@ | 
| #define NET_TOOLS_QUIC_QUIC_SERVER_SESSION_H_ | 
|  | 
| #include <set> | 
| +#include <string> | 
| #include <vector> | 
|  | 
| #include "base/basictypes.h" | 
| @@ -68,7 +69,7 @@ class QuicServerSession : public QuicSession { | 
| // Override base class to process FEC config received from client. | 
| void OnConfigNegotiated() override; | 
|  | 
| -  void set_serving_region(string serving_region) { | 
| +  void set_serving_region(std::string serving_region) { | 
| serving_region_ = serving_region; | 
| } | 
|  | 
| @@ -97,7 +98,7 @@ class QuicServerSession : public QuicSession { | 
|  | 
| // Text describing server location. Sent to the client as part of the bandwith | 
| // estimate in the source-address token. Optional, can be left empty. | 
| -  string serving_region_; | 
| +  std::string serving_region_; | 
|  | 
| // Time at which we send the last SCUP to the client. | 
| QuicTime last_scup_time_; | 
|  |