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

Side by Side Diff: net/quic/crypto/crypto_handshake_message.cc

Issue 1908103002: Landing Recent QUIC changes until 4/15/2016 17:20 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 8 months 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 unified diff | Download patch
« no previous file with comments | « net/quic/crypto/crypto_handshake_message.h ('k') | net/quic/crypto/crypto_server_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/quic/crypto/crypto_handshake_message.h" 5 #include "net/quic/crypto/crypto_handshake_message.h"
6 6
7 #include <memory>
8
7 #include "base/strings/string_number_conversions.h" 9 #include "base/strings/string_number_conversions.h"
8 #include "base/strings/stringprintf.h" 10 #include "base/strings/stringprintf.h"
9 #include "net/quic/crypto/crypto_framer.h" 11 #include "net/quic/crypto/crypto_framer.h"
10 #include "net/quic/crypto/crypto_protocol.h" 12 #include "net/quic/crypto/crypto_protocol.h"
11 #include "net/quic/crypto/crypto_utils.h" 13 #include "net/quic/crypto/crypto_utils.h"
12 #include "net/quic/quic_socket_address_coder.h" 14 #include "net/quic/quic_socket_address_coder.h"
13 #include "net/quic/quic_utils.h" 15 #include "net/quic/quic_utils.h"
14 16
15 using base::StringPiece; 17 using base::StringPiece;
16 using base::StringPrintf; 18 using base::StringPrintf;
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 ret += "0x" + base::HexEncode(it->second.data(), it->second.size()); 334 ret += "0x" + base::HexEncode(it->second.data(), it->second.size());
333 } 335 }
334 ret += "\n"; 336 ret += "\n";
335 } 337 }
336 --indent; 338 --indent;
337 ret += string(2 * indent, ' ') + ">"; 339 ret += string(2 * indent, ' ') + ">";
338 return ret; 340 return ret;
339 } 341 }
340 342
341 } // namespace net 343 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/crypto/crypto_handshake_message.h ('k') | net/quic/crypto/crypto_server_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698