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

Unified Diff: net/quic/core/quic_connection_test.cc

Issue 2524523002: Remove various 'using std::' statements from QUIC code and use (Closed)
Patch Set: Rebase Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/core/quic_connection_stats.cc ('k') | net/quic/core/quic_crypto_client_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_connection_test.cc
diff --git a/net/quic/core/quic_connection_test.cc b/net/quic/core/quic_connection_test.cc
index da606e6e9c6ead9d7568699ded665e1bb610e393..aa7f049c61332a897a5b1e45265c64ecf094cf92 100644
--- a/net/quic/core/quic_connection_test.cc
+++ b/net/quic/core/quic_connection_test.cc
@@ -38,10 +38,7 @@
#include "testing/gtest/include/gtest/gtest.h"
using base::StringPiece;
-using std::map;
-using std::ostream;
using std::string;
-using std::vector;
using testing::AnyNumber;
using testing::AtLeast;
using testing::DoAll;
@@ -650,7 +647,7 @@ struct TestParams {
TestParams(QuicVersion version, AckResponse ack_response)
: version(version), ack_response(ack_response) {}
- friend ostream& operator<<(ostream& os, const TestParams& p) {
+ friend std::ostream& operator<<(std::ostream& os, const TestParams& p) {
os << "{ client_version: " << QuicVersionToString(p.version)
<< " ack_response: "
<< (p.ack_response == AckResponse::kDefer ? "defer" : "immediate")
« no previous file with comments | « net/quic/core/quic_connection_stats.cc ('k') | net/quic/core/quic_crypto_client_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698