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

Side by Side Diff: net/quic/test_tools/simple_quic_framer.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/test_tools/quic_test_utils.cc ('k') | net/tools/quic/end_to_end_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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/test_tools/simple_quic_framer.h" 5 #include "net/quic/test_tools/simple_quic_framer.h"
6 6
7 #include <memory>
8
7 #include "base/macros.h" 9 #include "base/macros.h"
8 #include "base/stl_util.h" 10 #include "base/stl_util.h"
9 #include "net/quic/crypto/quic_decrypter.h" 11 #include "net/quic/crypto/quic_decrypter.h"
10 #include "net/quic/crypto/quic_encrypter.h" 12 #include "net/quic/crypto/quic_encrypter.h"
11 13
12 using base::StringPiece; 14 using base::StringPiece;
13 using std::string; 15 using std::string;
14 using std::vector; 16 using std::vector;
15 17
16 namespace net { 18 namespace net {
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 return visitor_->goaway_frames(); 221 return visitor_->goaway_frames();
220 } 222 }
221 223
222 const vector<QuicConnectionCloseFrame>& 224 const vector<QuicConnectionCloseFrame>&
223 SimpleQuicFramer::connection_close_frames() const { 225 SimpleQuicFramer::connection_close_frames() const {
224 return visitor_->connection_close_frames(); 226 return visitor_->connection_close_frames();
225 } 227 }
226 228
227 } // namespace test 229 } // namespace test
228 } // namespace net 230 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/test_tools/quic_test_utils.cc ('k') | net/tools/quic/end_to_end_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698