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

Side by Side Diff: net/quic/test_tools/simple_quic_framer.cc

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 years 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/simple_quic_framer.h ('k') | net/quic/test_tools/test_task_runner.h » ('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 "base/macros.h"
7 #include "base/stl_util.h" 8 #include "base/stl_util.h"
8 #include "net/quic/crypto/quic_decrypter.h" 9 #include "net/quic/crypto/quic_decrypter.h"
9 #include "net/quic/crypto/quic_encrypter.h" 10 #include "net/quic/crypto/quic_encrypter.h"
10 11
11 using base::StringPiece; 12 using base::StringPiece;
12 using std::string; 13 using std::string;
13 using std::vector; 14 using std::vector;
14 15
15 namespace net { 16 namespace net {
16 namespace test { 17 namespace test {
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 return visitor_->goaway_frames(); 226 return visitor_->goaway_frames();
226 } 227 }
227 228
228 const vector<QuicConnectionCloseFrame>& 229 const vector<QuicConnectionCloseFrame>&
229 SimpleQuicFramer::connection_close_frames() const { 230 SimpleQuicFramer::connection_close_frames() const {
230 return visitor_->connection_close_frames(); 231 return visitor_->connection_close_frames();
231 } 232 }
232 233
233 } // namespace test 234 } // namespace test
234 } // namespace net 235 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/test_tools/simple_quic_framer.h ('k') | net/quic/test_tools/test_task_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698