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

Side by Side Diff: net/tools/quic/end_to_end_test.cc

Issue 136853005: Use basictypes.h consistenly in QUIC code instead of macros.h and/or (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « net/quic/test_tools/simple_quic_framer.h ('k') | net/tools/quic/quic_client.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 <stddef.h> 5 #include <stddef.h>
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/singleton.h" 11 #include "base/memory/singleton.h"
11 #include "base/strings/string_number_conversions.h" 12 #include "base/strings/string_number_conversions.h"
12 #include "base/synchronization/waitable_event.h" 13 #include "base/synchronization/waitable_event.h"
13 #include "net/base/ip_endpoint.h" 14 #include "net/base/ip_endpoint.h"
14 #include "net/quic/congestion_control/tcp_cubic_sender.h" 15 #include "net/quic/congestion_control/tcp_cubic_sender.h"
15 #include "net/quic/crypto/aes_128_gcm_12_encrypter.h" 16 #include "net/quic/crypto/aes_128_gcm_12_encrypter.h"
16 #include "net/quic/crypto/null_encrypter.h" 17 #include "net/quic/crypto/null_encrypter.h"
17 #include "net/quic/quic_framer.h" 18 #include "net/quic/quic_framer.h"
18 #include "net/quic/quic_packet_creator.h" 19 #include "net/quic/quic_packet_creator.h"
(...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 client_->SendSynchronousRequest("/bar"); 857 client_->SendSynchronousRequest("/bar");
857 858
858 EXPECT_EQ(QUIC_STREAM_CONNECTION_ERROR, client_->stream_error()); 859 EXPECT_EQ(QUIC_STREAM_CONNECTION_ERROR, client_->stream_error());
859 EXPECT_EQ(QUIC_ERROR_MIGRATING_ADDRESS, client_->connection_error()); 860 EXPECT_EQ(QUIC_ERROR_MIGRATING_ADDRESS, client_->connection_error());
860 } 861 }
861 862
862 } // namespace 863 } // namespace
863 } // namespace test 864 } // namespace test
864 } // namespace tools 865 } // namespace tools
865 } // namespace net 866 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/test_tools/simple_quic_framer.h ('k') | net/tools/quic/quic_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698