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

Unified Diff: net/quic/core/quic_packet_creator_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_packet_creator.cc ('k') | net/quic/core/quic_packets.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_packet_creator_test.cc
diff --git a/net/quic/core/quic_packet_creator_test.cc b/net/quic/core/quic_packet_creator_test.cc
index ffddbbb602b6c82404c57446e6488192ac38dd45..3e006effadca11027ec545b0d69c475ac907fda7 100644
--- a/net/quic/core/quic_packet_creator_test.cc
+++ b/net/quic/core/quic_packet_creator_test.cc
@@ -6,6 +6,7 @@
#include <cstdint>
#include <memory>
+#include <ostream>
#include <string>
#include "base/macros.h"
@@ -25,7 +26,6 @@
#include "testing/gmock/include/gmock/gmock.h"
using base::StringPiece;
-using std::ostream;
using std::string;
using testing::DoAll;
using testing::InSequence;
@@ -47,7 +47,7 @@ struct TestParams {
connection_id_length(length),
version_serialization(version_serialization) {}
- friend ostream& operator<<(ostream& os, const TestParams& p) {
+ friend std::ostream& operator<<(std::ostream& os, const TestParams& p) {
os << "{ client_version: " << QuicVersionToString(p.version)
<< " connection id length: " << p.connection_id_length
<< " include version: " << p.version_serialization << " }";
« no previous file with comments | « net/quic/core/quic_packet_creator.cc ('k') | net/quic/core/quic_packets.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698