Index: net/tools/quic/quic_client.h |
diff --git a/net/tools/quic/quic_client.h b/net/tools/quic/quic_client.h |
index 688fef021cdcb8b898407ca2e24e8a030a580397..d7edf69bd6807f34c85d8f1dafce44c323e41387 100644 |
--- a/net/tools/quic/quic_client.h |
+++ b/net/tools/quic/quic_client.h |
@@ -84,8 +84,8 @@ class QuicClient : public EpollCallbackInterface, |
// Sends a request simple GET for each URL in |args|, and then waits for |
// each to complete. |
- void SendRequestsAndWaitForResponse(const |
- base::CommandLine::StringVector& args); |
+ void SendRequestsAndWaitForResponse( |
+ const base::CommandLine::StringVector& args); |
// Returns a newly created QuicSpdyClientStream, owned by the |
// QuicClient. |
@@ -141,9 +141,7 @@ class QuicClient : public EpollCallbackInterface, |
const QuicServerId& server_id() const { return server_id_; } |
// This should only be set before the initial Connect() |
- void set_server_id(const QuicServerId& server_id) { |
- server_id_ = server_id; |
- } |
+ void set_server_id(const QuicServerId& server_id) { server_id_ = server_id; } |
// SetProofVerifier sets the ProofVerifier that will be used to verify the |
// server's certificate and takes ownership of |verifier|. |